File: /home/confeduphaar/backip-old-files/modules/mod_latestnewsenhanced/fields/linkselect.php
<?php
/**
* @copyright Copyright (C) 2011 Simplify Your Web, Inc. All rights reserved.
* @license GNU General Public License version 3 or later; see LICENSE.txt
*/
defined( '_JEXEC' ) or die;
use Joomla\CMS\Component\ComponentHelper;
use Joomla\CMS\Form\FormHelper;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
jimport('joomla.filesystem.folder');
\JLoader::register('SYWK2', JPATH_LIBRARIES.'/syw/k2.php');
FormHelper::loadFieldClass('list');
class JFormFieldLinkSelect extends \JFormFieldList
{
public $type = 'LinkSelect';
static $core_fields = null;
static $k2_fields = null;
static function getCoreFields($allowed_types = array())
{
if (!isset(self::$core_fields)) {
\JLoader::register('FieldsHelper', JPATH_ADMINISTRATOR . '/components/com_fields/helpers/fields.php');
$fields = FieldsHelper::getFields('com_content.article');
self::$core_fields = array();
if (!empty($fields)) {
foreach ($fields as $field) {
if (!empty($allowed_types) && !in_array($field->type, $allowed_types)) {
continue;
}
self::$core_fields[] = $field;
}
}
}
return self::$core_fields;
}
static function getK2Fields($allowed_types = array())
{
if (!isset(self::$k2_fields)) {
self::$k2_fields = SYWK2::getK2Fields($allowed_types);
}
return self::$k2_fields;
}
protected function getOptions()
{
$options = array();
if (SYWK2::exists()) {
// get K2 extra fields
$fields = self::getK2Fields(array('link'));
$fields_count = 0;
foreach ($fields as $field) {
if ($fields_count == 0) {
$options[] = HTMLHelper::_('select.optgroup', Text::_('MOD_LATESTNEWSENHANCEDEXTENDED_VALUE_K2EXTRAFIELDS'));
}
$options[] = HTMLHelper::_('select.option', 'k2field:'.$field->type.':'.$field->id, 'K2: '.$field->group_name.': '.$field->name . ' (Pro)', 'value', 'text', $disable = true);
$fields_count++;
}
if ($fields_count > 0) {
$options[] = HTMLHelper::_('select.optgroup', Text::_('MOD_LATESTNEWSENHANCEDEXTENDED_VALUE_K2EXTRAFIELDS'));
}
}
// get Joomla! fields
// test the fields folder first to avoid message warning that the component is missing
if (\JFolder::exists(JPATH_ADMINISTRATOR . '/components/com_fields') && ComponentHelper::isEnabled('com_fields') && ComponentHelper::getParams('com_content')->get('custom_fields_enable', '1')) {
// get the custom fields
$fields = self::getCoreFields(array('url'));
// organize the fields according to their group
$fieldsPerGroup = array(
0 => array()
);
$groupTitles = array(
0 => Text::_('MOD_LATESTNEWSENHANCEDEXTENDED_VALUE_NOGROUPFIELD')
);
$fields_exist = false;
foreach ($fields as $field) {
if (!array_key_exists($field->group_id, $fieldsPerGroup)) {
$fieldsPerGroup[$field->group_id] = array();
$groupTitles[$field->group_id] = $field->group_title;
}
$fieldsPerGroup[$field->group_id][] = $field;
$fields_exist = true;
}
// loop trough the groups
if ($fields_exist) {
$options[] = HTMLHelper::_('select.optgroup', Text::_('MOD_LATESTNEWSENHANCEDEXTENDED_VALUE_JOOMLAFIELDS'));
foreach ($fieldsPerGroup as $group_id => $groupFields) {
if (!$groupFields) {
continue;
}
foreach ($groupFields as $field) {
$options[] = HTMLHelper::_('select.option', 'jfield:'.$field->type.':'.$field->id, $groupTitles[$group_id].': '.$field->title . ' (Pro)', 'value', 'text', $disable = true);
}
}
$options[] = HTMLHelper::_('select.optgroup', Text::_('MOD_LATESTNEWSENHANCEDEXTENDED_VALUE_JOOMLAFIELDS'));
}
}
$parent_options = parent::getOptions();
foreach ($parent_options as $parent_option) {
if ($parent_option->disable == true) {
$parent_option->text = $parent_option->text . ' (Pro)';
}
}
// Merge any additional options in the XML definition.
$options = array_merge($parent_options, $options);
return $options;
}
}
?>