Joomla-Sermon-Distributor/admin/src/Field/ArticlesField.php

78 lines
3.0 KiB
PHP
Raw Normal View History

2015-11-30 21:30:54 +00:00
<?php
2021-08-16 17:11:22 +00:00
/*-------------------------------------------------------------------------------------------------------------| www.vdm.io |------/
____ ____ __ __ __
/\ _`\ /\ _`\ __ /\ \__ __/\ \ /\ \__
\ \,\L\_\ __ _ __ ___ ___ ___ ___ \ \ \/\ \/\_\ ____\ \ ,_\ _ __ /\_\ \ \____ __ __\ \ ,_\ ___ _ __
\/_\__ \ /'__`\/\`'__\/' __` __`\ / __`\ /' _ `\ \ \ \ \ \/\ \ /',__\\ \ \/ /\`'__\/\ \ \ '__`\/\ \/\ \\ \ \/ / __`\/\`'__\
/\ \L\ \/\ __/\ \ \/ /\ \/\ \/\ \/\ \L\ \/\ \/\ \ \ \ \_\ \ \ \/\__, `\\ \ \_\ \ \/ \ \ \ \ \L\ \ \ \_\ \\ \ \_/\ \L\ \ \ \/
\ `\____\ \____\\ \_\ \ \_\ \_\ \_\ \____/\ \_\ \_\ \ \____/\ \_\/\____/ \ \__\\ \_\ \ \_\ \_,__/\ \____/ \ \__\ \____/\ \_\
\/_____/\/____/ \/_/ \/_/\/_/\/_/\/___/ \/_/\/_/ \/___/ \/_/\/___/ \/__/ \/_/ \/_/\/___/ \/___/ \/__/\/___/ \/_/
/------------------------------------------------------------------------------------------------------------------------------------/
2024-03-07 17:27:37 +00:00
@version 4.0.x
2021-08-16 17:11:22 +00:00
@created 22nd October, 2015
@package Sermon Distributor
@subpackage ArticlesField.php
2021-08-16 17:11:22 +00:00
@author Llewellyn van der Merwe <https://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
A sermon distributor that links to Dropbox.
/----------------------------------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Sermondistributor\Administrator\Field;
2021-08-16 17:11:22 +00:00
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Sermondistributor\Administrator\Helper\SermondistributorHelper;
2021-08-16 17:11:22 +00:00
// No direct access to this file
\defined('_JEXEC') or die;
2021-08-16 17:11:22 +00:00
/**
* Articles Form Field class for the Sermondistributor component
*
* @since 1.6
2021-08-16 17:11:22 +00:00
*/
class ArticlesField extends ListField
2021-08-16 17:11:22 +00:00
{
/**
* The articles field type.
*
* @var string
2021-08-16 17:11:22 +00:00
*/
public $type = 'Articles';
2021-08-16 17:11:22 +00:00
/**
* Method to get a list of options for a list input.
*
* @return array An array of Html options.
* @since 1.6
2021-08-16 17:11:22 +00:00
*/
protected function getOptions()
{
$db = Factory::getDBO();
2015-11-30 21:30:54 +00:00
$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[] = Html::_('select.option', '', 'Select an Article');
2015-11-30 21:30:54 +00:00
foreach($items as $item)
{
$options[] = Html::_('select.option', $item->id, $item->article_title . ' (' . $item->alias . ')');
2015-11-30 21:30:54 +00:00
}
}
2021-08-16 17:11:22 +00:00
return $options;
}
}