Current File : /home/pacjaorg/public_html/dnpsom/administrator/components/com_sppolls/controller.php |
<?php
use Joomla\CMS\Router\Route;
use Joomla\CMS\Language\Text;
use Joomla\CMS\MVC\Controller\BaseController;
defined('_JEXEC') or die;
class SppollsController extends BaseController{
public function display($cachable=false,$urlparams=false){
$view = $this->input->get('view','polls');
$layout = $this->input->get('layout','default');
$id = $this->input->getInt('id');
$this->input->set('view',$view);
// Check for edit form.
if($view == 'poll' && $layout == 'edit' && !$this->checkEditId('com_sppolls.edit.poll',$id)){
// Somehow the person just went to the form - we don't allow that.
$this->setError(Text::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID',$id));
$this->setMessage($this->getError(),'error');
$this->setRedirect(Route::_('index.php?option=com_sppolls&view=polls',false));
return false;
}
parent::display($cachable,$urlparams);
return $this;
}
}