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

18 lines
413 B
PHP

<?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' );
}