2015-12-01 05:06:34 +00:00
|
|
|
<?php
|
|
|
|
/*----------------------------------------------------------------------------------| www.giz.de |----/
|
|
|
|
Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
|
|
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
|
2019-04-04 11:51:37 +00:00
|
|
|
@version 3.4.x
|
|
|
|
@build 4th April, 2019
|
2015-12-01 05:06:34 +00:00
|
|
|
@created 15th June, 2012
|
|
|
|
@package Cost Benefit Projection
|
|
|
|
@subpackage articles.php
|
|
|
|
@author Llewellyn van der Merwe <http://www.vdm.io>
|
|
|
|
@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('list');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Articles Form Field class for the Costbenefitprojection component
|
|
|
|
*/
|
|
|
|
class JFormFieldArticles extends JFormFieldList
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The articles field type.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2018-05-05 13:43:04 +00:00
|
|
|
public $type = 'articles';
|
2015-12-01 05:06:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get a list of options for a list input.
|
|
|
|
*
|
2019-04-04 11:51:37 +00:00
|
|
|
* @return array An array of JHtml options.
|
2015-12-01 05:06:34 +00:00
|
|
|
*/
|
2019-04-04 11:51:37 +00:00
|
|
|
protected function getOptions()
|
2015-12-01 05:06:34 +00:00
|
|
|
{
|
|
|
|
$db = JFactory::getDBO();
|
|
|
|
$query = $db->getQuery(true);
|
|
|
|
$query->select($db->quoteName(array('a.id','a.title','a.alias'),array('id','article_title','alias')));
|
|
|
|
$query->from($db->quoteName('#__content', 'a'));
|
|
|
|
$query->where($db->quoteName('a.state') . ' = 1');
|
|
|
|
$query->order('a.title ASC');
|
|
|
|
$db->setQuery((string)$query);
|
|
|
|
$items = $db->loadObjectList();
|
|
|
|
$options = array();
|
|
|
|
if ($items)
|
|
|
|
{
|
|
|
|
$options[] = JHtml::_('select.option', '', 'Select an Article');
|
|
|
|
foreach($items as $item)
|
|
|
|
{
|
|
|
|
$options[] = JHtml::_('select.option', $item->id, $item->article_title . ' (' . $item->alias . ')');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $options;
|
|
|
|
}
|
|
|
|
}
|