view simpleReservation.php @ 122:709bc9c69318

mod: チャンネルスキップ引き続き実装中(まだ途中)
author yoneda <epgrec@park.mda.or.jp>
date Tue, 16 Mar 2010 23:08:59 +0900
parents cb7da56c4198
children 36ac7c416bd7
line wrap: on
line source

<?php
include_once('config.php');
include_once( INSTALL_PATH . "/DBRecord.class.php" );
include_once( INSTALL_PATH . "/Reservation.class.php" );
include_once( INSTALL_PATH . "/reclib.php" );
include_once( INSTALL_PATH . "/Settings.class.php" );

if( ! isset( $_GET['program_id'] ) ) exit("Error: 腟絎障" );
$program_id = $_GET['program_id'];

$settings = Settings::factory();

try {
	Reservation::simple( $program_id , 0, $settings->autorec_mode);
}
catch( Exception $e ) {
	exit( "Error:". $e->getMessage() );
}
?>