Mercurial > epgrec.yaz
view cancelReservation.php @ 152:784e3c82926e
mod: yazucchiさんのパッチ取り込み
author | epgrec@park.mda.or.jp <yoneda@recorder.localnet.mda.or.jp> |
---|---|
date | Sun, 28 Mar 2010 22:13:52 +0900 |
parents | 42f6eb738567 |
children | 84220382fea8 |
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' ); $program_id = 0; $reserve_id = 0; $settings = Settings::factory(); if( isset($_GET['program_id'])) { $program_id = $_GET['program_id']; } else if(isset($_GET['reserve_id'])) { $reserve_id = $_GET['reserve_id']; try { $rec = new DBRecord( RESERVE_TBL, "id" , $reserve_id ); $program_id = $rec->program_id; if( isset( $_GET['delete_file'] ) ) { if( $_GET['delete_file'] == 1 ) { // <ゃ if( file_exists( INSTALL_PATH."/".$settings->spool."/".$rec->path ) ) { @unlink(INSTALL_PATH."/".$settings->spool."/".$rec->path); @unlink(INSTALL_PATH."/".$settings->thumbs."/".$rec->path.".jpg"); } } } } catch( Exception $e ) { // ∴ } } // 羔腟牙糸乗院紊 if( $program_id ) { try { $rec = new DBRecord(PROGRAM_TBL, "id", $program_id ); $rec->autorec = 0; } catch( Exception $e ) { // ∴ } } // 篋膣羔絎茵 try { Reservation::cancel( $reserve_id, $program_id ); } catch( Exception $e ) { exit( "Error" . $e->getMessage() ); } exit(); ?>