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

18 lines
413 B
PHP
Raw Normal View History

<?php
try {
2010-12-02 23:34:41 +00:00
$CalendarUid = $_GET['id'];
$calendarObj = new Calendar();
$calendarObj->deleteCalendar( $CalendarUid );
2010-12-02 23:34:41 +00:00
G::Header( 'location: calendarList' );
2010-12-02 23:34:41 +00:00
} catch (Exception $e) {
$G_PUBLISH = new Publisher();
2010-12-02 23:34:41 +00:00
$aMessage['MESSAGE'] = $e->getMessage();
$G_PUBLISH->AddContent( 'xmlform', 'xmlform', 'login/showMessage', '', $aMessage );
2010-12-02 23:34:41 +00:00
G::RenderPage( 'publish', 'blank' );
}