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

65 lines
2.2 KiB
PHP
Raw Normal View History

<?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 import_health_data_sets.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\BaseController;
2022-03-03 02:58:38 +00:00
use Joomla\Utilities\ArrayHelper;
/**
2022-05-27 05:41:44 +00:00
* Costbenefitprojection Import_health_data_sets Base Controller
2022-03-03 02:58:38 +00:00
*/
2022-05-27 05:41:44 +00:00
class CostbenefitprojectionControllerImport_health_data_sets extends BaseController
2022-03-03 02:58:38 +00:00
{
/**
* Import an spreadsheet.
*
* @return void
*/
public function import()
{
// Check for request forgeries
JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
$model = $this->getModel('Import_health_data_sets');
if ($model->import())
{
$cache = JFactory::getCache('mod_menu');
$cache->clean();
// TODO: Reset the users acl here as well to kill off any missing bits
}
$app = JFactory::getApplication();
$redirect_url = $app->getUserState('com_costbenefitprojection.redirect_url');
if (empty($redirect_url))
{
$redirect_url = JRoute::_('index.php?option=com_costbenefitprojection&view=import_health_data_sets', false);
}
else
{
// wipe out the user state when we're going to redirect
$app->setUserState('com_costbenefitprojection.redirect_url', '');
$app->setUserState('com_costbenefitprojection.message', '');
$app->setUserState('com_costbenefitprojection.extension_message', '');
}
$this->setRedirect($redirect_url);
}
}