2021-04-24 04:42:47 +00:00
|
|
|
<?php
|
|
|
|
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
__ __ _ _____ _ _ __ __ _ _ _
|
|
|
|
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
|
|
|
|
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
|
|
|
|
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
|
|
|
|
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
|
|
|
|
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
|
|
|
|
| |
|
|
|
|
|_|
|
|
|
|
/-------------------------------------------------------------------------------------------------------------------------------/
|
|
|
|
|
2024-01-19 14:44:48 +00:00
|
|
|
@version 3.0.0
|
|
|
|
@build 19th January, 2024
|
|
|
|
@created 19th January, 2024
|
2021-04-24 04:42:47 +00:00
|
|
|
@package eHealth Portal
|
|
|
|
@subpackage stengths.php
|
2024-01-19 14:44:48 +00:00
|
|
|
@author Llewellyn van der Merwe <https://git.vdm.dev/joomla/eHealth-Portal>
|
2021-04-24 04:42:47 +00:00
|
|
|
@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');
|
|
|
|
|
2024-01-19 14:44:48 +00:00
|
|
|
use Joomla\CMS\Factory;
|
|
|
|
use Joomla\CMS\Language\Text;
|
|
|
|
use Joomla\CMS\HTML\HTMLHelper as Html;
|
|
|
|
|
2021-04-24 04:42:47 +00:00
|
|
|
// import the list field type
|
|
|
|
jimport('joomla.form.helper');
|
|
|
|
JFormHelper::loadFieldClass('list');
|
|
|
|
|
|
|
|
/**
|
2024-01-19 14:44:48 +00:00
|
|
|
* Stengths Form Field class for the Ehealthportal component
|
2021-04-24 04:42:47 +00:00
|
|
|
*/
|
|
|
|
class JFormFieldStengths extends JFormFieldList
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The stengths field type.
|
|
|
|
*
|
2024-01-19 14:44:48 +00:00
|
|
|
* @var string
|
2021-04-24 04:42:47 +00:00
|
|
|
*/
|
|
|
|
public $type = 'stengths';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get a list of options for a list input.
|
|
|
|
*
|
2024-01-19 14:44:48 +00:00
|
|
|
* @return array An array of Html options.
|
2021-04-24 04:42:47 +00:00
|
|
|
*/
|
|
|
|
protected function getOptions()
|
|
|
|
{
|
|
|
|
// Get the user object.
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
// Get the databse object.
|
|
|
|
$db = JFactory::getDBO();
|
|
|
|
$query = $db->getQuery(true);
|
|
|
|
$query->select($db->quoteName(array('a.id','a.name'),array('id','strength_name')));
|
2024-01-19 14:44:48 +00:00
|
|
|
$query->from($db->quoteName('#__ehealthportal_strength', 'a'));
|
2021-04-24 04:42:47 +00:00
|
|
|
$query->where($db->quoteName('a.published') . ' = 1');
|
|
|
|
$query->order('a.name ASC');
|
|
|
|
// Implement View Level Access (if set in table)
|
2024-01-19 14:44:48 +00:00
|
|
|
if (!$user->authorise('core.options', 'com_ehealthportal'))
|
2021-04-24 04:42:47 +00:00
|
|
|
{
|
2024-01-19 14:44:48 +00:00
|
|
|
$columns = $db->getTableColumns('#__ehealthportal_strength');
|
2021-04-24 04:42:47 +00:00
|
|
|
if(isset($columns['access']))
|
|
|
|
{
|
|
|
|
$groups = implode(',', $user->getAuthorisedViewLevels());
|
|
|
|
$query->where('a.access IN (' . $groups . ')');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$db->setQuery((string)$query);
|
|
|
|
$items = $db->loadObjectList();
|
|
|
|
$options = array();
|
|
|
|
if ($items)
|
|
|
|
{
|
|
|
|
$options[] = JHtml::_('select.option', '', 'Select an option');
|
|
|
|
foreach($items as $item)
|
|
|
|
{
|
|
|
|
$options[] = JHtml::_('select.option', $item->id, $item->strength_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $options;
|
|
|
|
}
|
|
|
|
}
|