Files
luos/workflow/engine/methods/setup/calendarDelete.php

20 lines
462 B
PHP
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?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' );
}