20 lines
462 B
PHP
Executable File
20 lines
462 B
PHP
Executable File
<?php
|
|
try {
|
|
|
|
$CalendarUid = $_GET['id'];
|
|
|
|
|
|
G::LoadClass('calendar');
|
|
$calendarObj=new calendar();
|
|
$calendarObj->deleteCalendar($CalendarUid);
|
|
|
|
G::Header('location: calendarList');
|
|
|
|
}
|
|
catch ( Exception $e ) {
|
|
$G_PUBLISH = new Publisher;
|
|
$aMessage['MESSAGE'] = $e->getMessage();
|
|
$G_PUBLISH->AddContent('xmlform', 'xmlform', 'login/showMessage', '', $aMessage );
|
|
G::RenderPage( 'publish', 'blank' );
|
|
}
|
|
|