PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
libraries
/
joomla
/
form
/
fields
<?php /** * @package Joomla.Platform * @subpackage Form * * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; use Joomla\Utilities\ArrayHelper; JFormHelper::loadFieldClass('list'); /** * Form Field class for the Joomla Framework. * * @since 3.7.0 */ class JFormFieldComponents extends JFormFieldList { /** * The form field type. * * @var string * @since 3.7.0 */ protected $type = 'Components'; /** * Method to get a list of options for a list input. * * @return array An array of JHtml options. * * @since 2.5.0 */ protected function getOptions() { $db = JFactory::getDbo(); $query = $db->getQuery(true) ->select('name AS text, element AS value') ->from('#__extensions') ->where('enabled >= 1') ->where('type =' . $db->quote('component')); $items = $db->setQuery($query)->loadObjectList(); if ($items) { $lang = JFactory::getLanguage(); foreach ($items as &$item) { // Load language $extension = $item->value; $lang->load("$extension.sys", JPATH_ADMINISTRATOR, null, false, true) || $lang->load("$extension.sys", JPATH_ADMINISTRATOR . '/components/' . $extension, null, false, true); // Translate component name $item->text = JText::_($item->text); } // Sort by component name $items = ArrayHelper::sortObjects($items, 'text', 1, true, true); } // Merge any additional options in the XML definition. $options = array_merge(parent::getOptions(), $items); return $options; } }
[+]
..
[-] accesslevel.php
[edit]
[-] aliastag.php
[edit]
[-] cachehandler.php
[edit]
[-] calendar.php
[edit]
[-] checkbox.php
[edit]
[-] checkboxes.php
[edit]
[-] color.php
[edit]
[-] combo.php
[edit]
[-] components.php
[edit]
[-] databaseconnection.php
[edit]
[-] email.php
[edit]
[-] file.php
[edit]
[-] filelist.php
[edit]
[-] folderlist.php
[edit]
[-] groupedlist.php
[edit]
[-] hidden.php
[edit]
[-] imagelist.php
[edit]
[-] index.html
[edit]
[-] integer.php
[edit]
[-] language.php
[edit]
[-] list.php
[edit]
[-] meter.php
[edit]
[-] note.php
[edit]
[-] number.php
[edit]
[-] password.php
[edit]
[-] plugins.php
[edit]
[-] predefinedlist.php
[edit]
[-] radio.php
[edit]
[-] range.php
[edit]
[-] repeatable.php
[edit]
[-] rules.php
[edit]
[-] sessionhandler.php
[edit]
[-] spacer.php
[edit]
[-] sql.php
[edit]
[-] subform.php
[edit]
[-] tel.php
[edit]
[-] text.php
[edit]
[-] textarea.php
[edit]
[-] timezone.php
[edit]
[-] url.php
[edit]
[-] usergroup.php
[edit]
[-] .htaccess.disabled
[edit]