0byt3m1n1-V2
Path:
/
home
/
a
/
c
/
a
/
academiac
/
www
/
[
Home
]
File: editors.php.tar
home/academiac/www/libraries/joomla/html/parameter/element/editors.php 0000644 00000003424 15137262477 0022224 0 ustar 00 <?php /** * @package Joomla.Platform * @subpackage HTML * * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; /** * Renders a editors element * * @package Joomla.Platform * @subpackage Parameter * @since 11.1 * @deprecated Use JFormFieldEditors instead */ class JElementEditors extends JElement { /** * Element name * * @var string */ protected $_name = 'Editors'; /** * Fetch an editor element * * @param string $name Element name * @param string $value Element value * @param JXMLElement &$node JXMLElement node object containing the settings for the element * @param string $control_name Control name * * @return string * * @deprecated 12.1 * @see JFormFieldEditors::getOptions * @since 11.1 */ public function fetchElement($name, $value, &$node, $control_name) { // Deprecation warning. JLog::add('JElementEditor::fetchElement is deprecated.', JLog::WARNING, 'deprecated'); $db = JFactory::getDbo(); $user = JFactory::getUser(); // compile list of the editors $query = 'SELECT element AS value, name AS text' . ' FROM #__extensions' . ' WHERE folder = "editors"' . ' AND type = "plugin"' . ' AND enabled = 1' . ' ORDER BY ordering, name'; $db->setQuery($query); $editors = $db->loadObjectList(); array_unshift($editors, JHtml::_('select.option', '', JText::_('JOPTION_SELECT_EDITOR'))); return JHtml::_( 'select.genericlist', $editors, $control_name . '[' . $name . ']', array('id' => $control_name . $name, 'list.attr' => 'class="inputbox"', 'list.select' => $value) ); } } home/academiac/www/libraries/joomla/form/fields/editors.php 0000644 00000004066 15137514475 0020061 0 ustar 00 <?php /** * @package Joomla.Platform * @subpackage Form * * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; JFormHelper::loadFieldClass('list'); /** * Form Field class for the Joomla Platform. * Provides a list of installed editors. * * @package Joomla.Platform * @subpackage Form * @see JFormFieldEditor * @since 11.1 * @deprecated 21.1 Use JFormFieldPlugins instead (with folder="editors") */ class JFormFieldEditors extends JFormFieldList { /** * The form field type. * * @var string * @since 11.1 */ public $type = 'Editors'; /** * Method to get the field options for the list of installed editors. * * @return array The field option objects. * * @since 11.1 */ protected function getOptions() { JLog::add('JFormFieldEditors is deprecated. Use JFormFieldPlugins instead (with folder="editors").', JLog::WARNING, 'deprecated'); // Get the database object and a new query object. $db = JFactory::getDBO(); $query = $db->getQuery(true); // Build the query. $query->select('element AS value, name AS text'); $query->from('#__extensions'); $query->where('folder = ' . $db->quote('editors')); $query->where('enabled = 1'); $query->order('ordering, name'); // Set the query and load the options. $db->setQuery($query); $options = $db->loadObjectList(); $lang = JFactory::getLanguage(); foreach ($options as $i => $option) { $lang->load('plg_editors_' . $option->value, JPATH_ADMINISTRATOR, null, false, true) || $lang->load('plg_editors_' . $option->value, JPATH_PLUGINS . '/editors/' . $option->value, null, false, true); $options[$i]->text = JText::_($option->text); } // Check for a database error. if ($db->getErrorNum()) { JError::raiseWarning(500, $db->getErrorMsg()); } // Merge any additional options in the XML definition. $options = array_merge(parent::getOptions(), $options); return $options; } }
©
2018.