131 lines
5.2 KiB
PHP
131 lines
5.2 KiB
PHP
<?php
|
|
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
__ __ _ _____ _ _ __ __ _ _ _
|
|
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
|
|
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
|
|
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
|
|
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
|
|
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
|
|
| |
|
|
|_|
|
|
/-------------------------------------------------------------------------------------------------------------------------------/
|
|
|
|
@version 4.0.0
|
|
@build 19th January, 2024
|
|
@created 13th August, 2020
|
|
@package eHealth Portal
|
|
@subpackage ReferralsController.php
|
|
@author Llewellyn van der Merwe <https://git.vdm.dev/joomla/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
|
|
|
|
/-----------------------------------------------------------------------------------------------------------------------------*/
|
|
namespace JCB\Component\Ehealthportal\Administrator\Controller;
|
|
|
|
// No direct access to this file
|
|
\defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Factory;
|
|
use Joomla\CMS\Language\Text;
|
|
use Joomla\CMS\MVC\Controller\AdminController;
|
|
use Joomla\Utilities\ArrayHelper;
|
|
use Joomla\CMS\Router\Route;
|
|
use Joomla\CMS\Session\Session;
|
|
use JCB\Component\Ehealthportal\Administrator\Helper\EhealthportalHelper;
|
|
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
|
use VDM\Joomla\Utilities\ObjectHelper;
|
|
|
|
/**
|
|
* Referrals Admin Controller
|
|
*/
|
|
class ReferralsController extends AdminController
|
|
{
|
|
/**
|
|
* The prefix to use with controller messages.
|
|
*
|
|
* @var string
|
|
* @since 1.6
|
|
*/
|
|
protected $text_prefix = 'COM_EHEALTHPORTAL_REFERRALS';
|
|
|
|
/**
|
|
* Proxy for getModel.
|
|
*
|
|
* @param string $name The model name. Optional.
|
|
* @param string $prefix The class prefix. Optional.
|
|
* @param array $config Configuration array for model. Optional.
|
|
*
|
|
* @return \Joomla\CMS\MVC\Model\BaseDatabaseModel
|
|
*
|
|
* @since 1.6
|
|
*/
|
|
public function getModel($name = 'Referral', $prefix = 'Administrator', $config = ['ignore_request' => true])
|
|
{
|
|
return parent::getModel($name, $prefix, $config);
|
|
}
|
|
|
|
public function exportData()
|
|
{
|
|
// Check for request forgeries
|
|
Session::checkToken() or die(Text::_('JINVALID_TOKEN'));
|
|
// check if export is allowed for this user.
|
|
$user = Factory::getApplication()->getIdentity();
|
|
if ($user->authorise('referral.export', 'com_ehealthportal') && $user->authorise('core.export', 'com_ehealthportal'))
|
|
{
|
|
// Get the input
|
|
$input = Factory::getApplication()->input;
|
|
$pks = $input->post->get('cid', array(), 'array');
|
|
// Sanitize the input
|
|
$pks = ArrayHelper::toInteger($pks);
|
|
// Get the model
|
|
$model = $this->getModel('Referrals');
|
|
// get the data to export
|
|
$data = $model->getExportData($pks);
|
|
if (UtilitiesArrayHelper::check($data))
|
|
{
|
|
// now set the data to the spreadsheet
|
|
$date = Factory::getDate();
|
|
EhealthportalHelper::xls($data,'Referrals_'.$date->format('jS_F_Y'),'Referrals exported ('.$date->format('jS F, Y').')','referrals');
|
|
}
|
|
}
|
|
// Redirect to the list screen with error.
|
|
$message = Text::_('COM_EHEALTHPORTAL_EXPORT_FAILED');
|
|
$this->setRedirect(Route::_('index.php?option=com_ehealthportal&view=referrals', false), $message, 'error');
|
|
return;
|
|
}
|
|
|
|
|
|
public function importData()
|
|
{
|
|
// Check for request forgeries
|
|
Session::checkToken() or die(Text::_('JINVALID_TOKEN'));
|
|
// check if import is allowed for this user.
|
|
$user = Factory::getApplication()->getIdentity();
|
|
if ($user->authorise('referral.import', 'com_ehealthportal') && $user->authorise('core.import', 'com_ehealthportal'))
|
|
{
|
|
// Get the import model
|
|
$model = $this->getModel('Referrals');
|
|
// get the headers to import
|
|
$headers = $model->getExImPortHeaders();
|
|
if (ObjectHelper::check($headers))
|
|
{
|
|
// Load headers to session.
|
|
$session = Factory::getSession();
|
|
$headers = json_encode($headers);
|
|
$session->set('referral_VDM_IMPORTHEADERS', $headers);
|
|
$session->set('backto_VDM_IMPORT', 'referrals');
|
|
$session->set('dataType_VDM_IMPORTINTO', 'referral');
|
|
// Redirect to import view.
|
|
$message = Text::_('COM_EHEALTHPORTAL_IMPORT_SELECT_FILE_FOR_REFERRALS');
|
|
$this->setRedirect(Route::_('index.php?option=com_ehealthportal&view=import', false), $message);
|
|
return;
|
|
}
|
|
}
|
|
// Redirect to the list screen with error.
|
|
$message = Text::_('COM_EHEALTHPORTAL_IMPORT_FAILED');
|
|
$this->setRedirect(Route::_('index.php?option=com_ehealthportal&view=referrals', false), $message, 'error');
|
|
return;
|
|
}
|
|
} |