Spaces:
Sleeping
Sleeping
File size: 413 Bytes
07c3cdd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <?php
try {
$CalendarUid = $_GET['id'];
$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' );
}
|