Mercurial > epgrec.yaz
annotate simpleReservation.php @ 175:f68f63465a41 default tip
handles RecException instead of Exception
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Tue, 16 Apr 2013 15:24:02 +0900 |
parents | 66eabfc1b118 |
children |
rev | line source |
---|---|
1 | 1 <?php |
2 include_once('config.php'); | |
3 include_once( INSTALL_PATH . "/DBRecord.class.php" ); | |
4 include_once( INSTALL_PATH . "/Reservation.class.php" ); | |
5 include_once( INSTALL_PATH . "/reclib.php" ); | |
77 | 6 include_once( INSTALL_PATH . "/Settings.class.php" ); |
1 | 7 |
8 if( ! isset( $_GET['program_id'] ) ) exit("Error: 番組が指定されていません" ); | |
9 $program_id = $_GET['program_id']; | |
10 | |
77 | 11 $settings = Settings::factory(); |
12 | |
1 | 13 try { |
159
66eabfc1b118
revoke all whitespace modifications
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
87
diff
changeset
|
14 Reservation::simple( $program_id , 0, $settings->autorec_mode); |
1 | 15 } |
16 catch( Exception $e ) { | |
17 exit( "Error:". $e->getMessage() ); | |
18 } | |
159
66eabfc1b118
revoke all whitespace modifications
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
87
diff
changeset
|
19 ?> |