Support-Groups/admin/models/fields/paymentsfilteryear.php

86 lines
3.1 KiB
PHP

<?php
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
__ __ _ _____ _ _ __ __ _ _ _
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
| |
|_|
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.0.11
@build 2nd March, 2022
@created 24th February, 2016
@package Support Groups
@subpackage paymentsfilteryear.php
@author Llewellyn van der Merwe <http://www.vdm.io>
@copyright Copyright (C) 2015. All Rights Reserved
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
Support Groups
/-----------------------------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
// import the list field type
jimport('joomla.form.helper');
JFormHelper::loadFieldClass('list');
/**
* Paymentsfilteryear Form Field class for the Supportgroups component
*/
class JFormFieldPaymentsfilteryear extends JFormFieldList
{
/**
* The paymentsfilteryear field type.
*
* @var string
*/
public $type = 'paymentsfilteryear';
/**
* Method to get a list of options for a list input.
*
* @return array An array of JHtml options.
*/
protected function getOptions()
{
// Get a db connection.
$db = JFactory::getDbo();
// Create a new query object.
$query = $db->getQuery(true);
// Select the text.
$query->select($db->quoteName('year'));
$query->from($db->quoteName('#__supportgroups_payment'));
$query->order($db->quoteName('year') . ' ASC');
// Reset the query using our newly populated query object.
$db->setQuery($query);
$results = $db->loadColumn();
$_filter = array();
$_filter[] = JHtml::_('select.option', '', '- ' . JText::_('COM_SUPPORTGROUPS_FILTER_SELECT_YEAR') . ' -');
if ($results)
{
// get paymentsmodel
$model = SupportgroupsHelper::getModel('payments');
$results = array_unique($results);
foreach ($results as $year)
{
// Translate the year selection
$text = $model->selectionTranslation($year,'year');
// Now add the year and its text to the options array
$_filter[] = JHtml::_('select.option', $year, JText::_($text));
}
}
return $_filter;
}
}