Example #1
0
 /**
  * Execute the controller.
  *
  * @return  boolean  True if controller finished execution, false if the controller did not
  *                   finish execution. A controller might return false if some precondition for
  *                   the controller to run has not been satisfied.
  *
  * @since   12.1
  * @throws  LogicException
  * @throws  RuntimeException
  */
 public function execute()
 {
     if (!JFactory::getUser()->authorise('project.delete', 'com_monitor')) {
         throw new Exception(JText::_('JERROR_ALERTNOAUTHOR'), 403);
     }
     $app = JFactory::getApplication();
     $model = new MonitorModelProject($app);
     $model->delete($app->input->get('cid', array(), 'array'));
     $app->enqueueMessage(JText::_('COM_MONITOR_PROJECT_DELETED'));
     $app->redirect(JRoute::_('index.php?option=com_monitor&view=projects', false));
     return true;
 }