eHealth-Portal/admin/controllers/hiv_counselings_and_testing...

123 lines
5.2 KiB
PHP
Raw Normal View History

2021-04-24 04:42:47 +00:00
<?php
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
__ __ _ _____ _ _ __ __ _ _ _
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
| |
|_|
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.0.5
@build 24th April, 2021
@created 13th August, 2020
@package eHealth Portal
@subpackage hiv_counselings_and_testings.php
@author Oh Martin <https://github.com/namibia/eHealth-Portal>
@copyright Copyright (C) 2020 Vast Development Method. All rights reserved.
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
Portal for mobile health clinics
/-----------------------------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
use Joomla\Utilities\ArrayHelper;
/**
* Hiv_counselings_and_testings Controller
*/
class Ehealth_portalControllerHiv_counselings_and_testings extends JControllerAdmin
{
/**
* The prefix to use with controller messages.
*
* @var string
* @since 1.6
*/
protected $text_prefix = 'COM_EHEALTH_PORTAL_HIV_COUNSELINGS_AND_TESTINGS';
/**
* Method to get a model object, loading it if required.
*
* @param string $name The model name. Optional.
* @param string $prefix The class prefix. Optional.
* @param array $config Configuration array for model. Optional.
*
* @return JModelLegacy The model.
*
* @since 1.6
*/
public function getModel($name = 'Hiv_counseling_and_testing', $prefix = 'Ehealth_portalModel', $config = array('ignore_request' => true))
{
return parent::getModel($name, $prefix, $config);
}
public function exportData()
{
// Check for request forgeries
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
// check if export is allowed for this user.
$user = JFactory::getUser();
if ($user->authorise('hiv_counseling_and_testing.export', 'com_ehealth_portal') && $user->authorise('core.export', 'com_ehealth_portal'))
{
// Get the input
$input = JFactory::getApplication()->input;
$pks = $input->post->get('cid', array(), 'array');
// Sanitize the input
$pks = ArrayHelper::toInteger($pks);
// Get the model
$model = $this->getModel('Hiv_counselings_and_testings');
// get the data to export
$data = $model->getExportData($pks);
if (Ehealth_portalHelper::checkArray($data))
{
// now set the data to the spreadsheet
$date = JFactory::getDate();
Ehealth_portalHelper::xls($data,'Hiv_counselings_and_testings_'.$date->format('jS_F_Y'),'Hiv counselings and testings exported ('.$date->format('jS F, Y').')','hiv counselings and testings');
}
}
// Redirect to the list screen with error.
$message = JText::_('COM_EHEALTH_PORTAL_EXPORT_FAILED');
$this->setRedirect(JRoute::_('index.php?option=com_ehealth_portal&view=hiv_counselings_and_testings', false), $message, 'error');
return;
}
public function importData()
{
// Check for request forgeries
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
// check if import is allowed for this user.
$user = JFactory::getUser();
if ($user->authorise('hiv_counseling_and_testing.import', 'com_ehealth_portal') && $user->authorise('core.import', 'com_ehealth_portal'))
{
// Get the import model
$model = $this->getModel('Hiv_counselings_and_testings');
// get the headers to import
$headers = $model->getExImPortHeaders();
if (Ehealth_portalHelper::checkObject($headers))
{
// Load headers to session.
$session = JFactory::getSession();
$headers = json_encode($headers);
$session->set('hiv_counseling_and_testing_VDM_IMPORTHEADERS', $headers);
$session->set('backto_VDM_IMPORT', 'hiv_counselings_and_testings');
$session->set('dataType_VDM_IMPORTINTO', 'hiv_counseling_and_testing');
// Redirect to import view.
$message = JText::_('COM_EHEALTH_PORTAL_IMPORT_SELECT_FILE_FOR_HIV_COUNSELINGS_AND_TESTINGS');
$this->setRedirect(JRoute::_('index.php?option=com_ehealth_portal&view=import', false), $message);
return;
}
}
// Redirect to the list screen with error.
$message = JText::_('COM_EHEALTH_PORTAL_IMPORT_FAILED');
$this->setRedirect(JRoute::_('index.php?option=com_ehealth_portal&view=hiv_counselings_and_testings', false), $message, 'error');
return;
}
}