@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'); // import the list field type jimport('joomla.form.helper'); JFormHelper::loadFieldClass('user'); /** * Serviceprovideruser Form Field class for the Costbenefitprojection component */ class JFormFieldServiceprovideruser extends JFormFieldUser { /** * The serviceprovideruser field type. * * @var string */ public $type = 'serviceprovideruser'; /** * Method to get the filtering groups (null means no filtering) * * @return mixed array of filtering groups or null. * * @since 1.6 */ protected function getGroups() { // set the groups array $groups = JComponentHelper::getParams('com_costbenefitprojection')->get('serviceprovideruser'); return $groups; } /** * Method to get the users to exclude from the list of users * * @return mixed Array of users to exclude or null to to not exclude them * * @since 1.6 */ protected function getExcluded() { // To ensure that there is only one record per user // Get a db connection. $db = JFactory::getDbo(); // Create a new query object. $query = $db->getQuery(true); // Select all records from the #__costbenefitprojection_service_provider table from user column $query->select($db->quoteName('user')); $query->from($db->quoteName('#__costbenefitprojection_service_provider')); $db->setQuery($query); $db->execute(); $found = $db->getNumRows(); if ($found) { // return all users already used return array_unique($db->loadColumn()); } return null; } }