コード例 #1
0
ファイル: icalrepeat.php プロジェクト: madseller/coperio
 function delete()
 {
     $is_event_editor = JEVHelper::isEventCreator();
     if (!$is_event_editor) {
         JError::raiseError(403, JText::_('ALERTNOTAUTH'));
     }
     parent::delete();
 }
コード例 #2
0
ファイル: icalrepeat.php プロジェクト: pguilford/vcomcc
 function delete()
 {
     $is_event_editor = JEVHelper::isEventCreator();
     if (!$is_event_editor) {
         throw new Exception(JText::_('ALERTNOTAUTH'), 403);
         return false;
     }
     parent::delete();
 }