Mercurial > epgrec.yaz
view reservationTable.php @ 77:cb7da56c4198
modified: Keyword.class.php
modified: config.php.sample
modified: index.php
modified: install/step1.php
modified: keywordTable.php
modified: programTable.php
modified: simpleReservation.php
modified: templates/index.html
modified: templates/keywordTable.html
modified: templates/programTable.html
author | Sushi-k <epgrec@park.mda.or.jp> |
---|---|
date | Wed, 24 Feb 2010 20:22:19 +0900 |
parents | 8965ef108821 |
children |
line wrap: on
line source
<?php include_once('config.php'); include_once( INSTALL_PATH . '/DBRecord.class.php' ); include_once( INSTALL_PATH . '/Smarty/Smarty.class.php' ); try{ $rvs = DBRecord::createRecords(RESERVE_TBL, "WHERE complete='0' ORDER BY starttime ASC" ); $reservations = array(); foreach( $rvs as $r ) { $cat = new DBRecord(CATEGORY_TBL, "id", $r->category_id ); $arr = array(); $arr['id'] = $r->id; $arr['type'] = $r->type; $arr['channel'] = $r->channel; $arr['starttime'] = $r->starttime; $arr['endtime'] = $r->endtime; $arr['mode'] = $RECORD_MODE[$r->mode]['name']; $arr['title'] = $r->title; $arr['description'] = $r->description; $arr['cat'] = $cat->name_en; $arr['autorec'] = $r->autorec; array_push( $reservations, $arr ); } $smarty = new Smarty(); $smarty->assign("sitetitle","録画予約一覧"); $smarty->assign( "reservations", $reservations ); $smarty->display("reservationTable.html"); } catch( exception $e ) { exit( $e->getMessage() ); } ?>