Cost-Benefit-Projection/admin/controllers/combinedresults.php

64 lines
2.0 KiB
PHP
Raw Normal View History

2015-12-01 05:06:34 +00:00
<?php
2022-03-03 02:58:38 +00:00
/*----------------------------------------------------------------------------------| www.giz.de |----/
Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
/-------------------------------------------------------------------------------------------------------/
2022-05-27 05:41:44 +00:00
@version 3.5.x
@build 27th May, 2022
2022-03-03 02:58:38 +00:00
@created 15th June, 2012
@package Cost Benefit Projection
@subpackage combinedresults.php
@author Llewellyn van der Merwe <http://www.vdm.io>
@owner Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
@copyright Copyright (C) 2015. All Rights Reserved
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/-------------------------------------------------------------------------------------------------------/
Cost Benefit Projection Tool.
/------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
2022-05-27 05:41:44 +00:00
use Joomla\CMS\MVC\Controller\AdminController;
2022-03-03 02:58:38 +00:00
use Joomla\Utilities\ArrayHelper;
/**
2022-05-27 05:41:44 +00:00
* Combinedresults Admin Controller
2022-03-03 02:58:38 +00:00
*/
2022-05-27 05:41:44 +00:00
class CostbenefitprojectionControllerCombinedresults extends AdminController
2022-03-03 02:58:38 +00:00
{
2022-05-27 05:41:44 +00:00
/**
* The prefix to use with controller messages.
*
* @var string
* @since 1.6
*/
2022-03-03 02:58:38 +00:00
protected $text_prefix = 'COM_COSTBENEFITPROJECTION_COMBINEDRESULTS';
2022-05-27 05:41:44 +00:00
2022-03-03 02:58:38 +00:00
/**
* Proxy for getModel.
* @since 2.5
*/
public function getModel($name = 'Combinedresults', $prefix = 'CostbenefitprojectionModel', $config = array())
{
$model = parent::getModel($name, $prefix, array('ignore_request' => true));
return $model;
}
2022-05-27 05:41:44 +00:00
public function dashboard()
2022-03-03 02:58:38 +00:00
{
$this->setRedirect(JRoute::_('index.php?option=com_costbenefitprojection', false));
return;
2015-12-01 05:06:34 +00:00
}
public function gotoCompanies()
{
// Check for request forgeries
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
// set the redirecting
$this->setRedirect(JRoute::_('index.php?option=com_costbenefitprojection&view=companies', false));
2022-03-03 02:58:38 +00:00
}
}