view customReservation.php @ 121:ea54c3128da3

mod: チャンネルスキップ実装中(番組表の表示方法を変更した)
author Sushi-k <epgrec@park.mda.or.jp>
date Tue, 16 Mar 2010 12:46:37 +0900
parents 8965ef108821
children 481e789605e3
line wrap: on
line source

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

$settings = Settings::factory();

$program_id = 0;
if( isset( $_POST['program_id'] ) ) $program_id = $_POST['program_id'];


if(!(
   isset($_POST['shour'])       && 
   isset($_POST['smin'])        &&
   isset($_POST['smonth'])      &&
   isset($_POST['sday'])        &&
   isset($_POST['syear'])       &&
   isset($_POST['ehour'])       &&
   isset($_POST['emin'])        &&
   isset($_POST['emonth'])      &&
   isset($_POST['eday'])        &&
   isset($_POST['eyear'])       &&
   isset($_POST['channel_id'])  &&
   isset($_POST['title'])       &&
   isset($_POST['description']) &&
   isset($_POST['category_id']) &&
   isset($_POST['record_mode']))
) {
	exit("Error:篋膣綽荀ゃ祉障");
}


$start_time = @mktime( $_POST['shour'], $_POST['smin'], 0, $_POST['smonth'], $_POST['sday'], $_POST['syear'] );
if( ($start_time < 0) || ($start_time === false) ) {
	exit("Error:紮筝罩cс" );
}

$end_time = @mktime( $_POST['ehour'], $_POST['emin'], 0, $_POST['emonth'], $_POST['eday'], $_POST['eyear'] );
if( ($end_time < 0) || ($end_time === false) ) {
	exit("Error:腟篋筝罩cс" );
}

$channel_id = $_POST['channel_id'];
$title = $_POST['title'];
$description = $_POST['description'];
$category_id = $_POST['category_id'];
$mode = $_POST['record_mode'];


$rval = 0;
try{
	$rval = Reservation::custom(
		toDatetime($start_time),
		toDatetime($end_time),
		$channel_id,
		$title,
		$description,
		$category_id,
		$program_id,
		0,		// 牙
		$mode	// 牙祉≪若
	);
}
catch( Exception $e ) {
	exit( "Error:".$e->getMessage() );
}
exit( "".$program_id );
?>