PATH:
home
/
sparklp6
/
public_html
/
sparklerfilters-org
/
administrator
/
components
/
com_k2
/
elements
<?php /** * @version 2.10.x * @package K2 * @author JoomlaWorks https://www.joomlaworks.net * @copyright Copyright (c) 2006 - 2020 JoomlaWorks Ltd. All rights reserved. * @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html */ // no direct access defined('_JEXEC') or die; require_once(JPATH_ADMINISTRATOR.'/components/com_k2/elements/base.php'); class K2ElementItemForm extends K2Element { public function fetchElement($name, $value, &$node, $control_name) { if (version_compare(JVERSION, '3.5', 'ge')) { JHtml::_('behavior.framework'); } $document = JFactory::getDocument(); $document->addScriptDeclaration(" /* Mootools Snippet */ window.addEvent('domready', function() { if($('request-options')) { $$('.panel')[0].setStyle('display', 'none'); } if($('jform_browserNav')) { $('jform_browserNav').setProperty('value', 2); $('jform_browserNav').getElements('option')[0].destroy(); } if($('browserNav')) { $('browserNav').setProperty('value', 2); options = $('browserNav').getElements('option'); if(options.length == 3) { options[0].remove(); } } }); "); return ''; } public function fetchTooltip($label, $description, &$node, $control_name, $name) { return ''; } } class JFormFielditemform extends K2ElementItemForm { public $type = 'itemform'; } class JElementitemform extends K2ElementItemForm { public $_name = 'itemform'; }
[-] base.php
[edit]
[-] template.php
[edit]
[-] item.php
[edit]
[-] categories.php
[edit]
[-] header.php
[edit]
[-] menus.php
[edit]
[-] menuitem.php
[edit]
[-] k2modalselector.php
[edit]
[-] category.php
[edit]
[-] k2tags.php
[edit]
[-] k2textarea.php
[edit]
[-] categoriesmultiple.php
[edit]
[-] k2category.php
[edit]
[-] k2users.php
[edit]
[-] moduletemplate.php
[edit]
[-] itemform.php
[edit]
[+]
..