view simpleReservation.php @ 136:6754b6aa50cf

mod: ログ機能のためにconfig.phpを変更
author epgrec@park.mda.or.jp <yoneda@recorder.localnet.mda.or.jp>
date Sun, 21 Mar 2010 00:00:58 +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() );
}
?>