view simpleReservation.php @ 157:00b5ed67d792

mod: xmlrpcをテスト的に追加(まだ途中)
author Sushi-k <epgrec@park.mda.or.jp>
date Tue, 30 Mar 2010 19:00:39 +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() );
}
?>