PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
caribe
/
modules
/
mod_djmegamenu
/
fields
<?php /** * @version $Id: djspacer.php 31 2015-04-29 14:25:09Z szymon $ * @package DJ-MediaTools * @copyright Copyright (C) 2012 DJ-Extensions.com LTD, All rights reserved. * @license http://www.gnu.org/licenses GNU/GPL * @author url: http://dj-extensions.com * @author email contact@dj-extensions.com * @developer Szymon Woronowski - szymon.woronowski@design-joomla.eu * * DJ-MediaTools is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * DJ-MediaTools is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with DJ-MediaTools. If not, see <http://www.gnu.org/licenses/>. * */ defined('JPATH_PLATFORM') or die; /** * Form Field class for the Joomla Platform. * Provides spacer markup to be used in form layouts. * * @package Joomla.Platform * @subpackage Form * @since 11.1 */ class JFormFieldDJSpacer extends JFormField { /** * The form field type. * * @var string * @since 11.1 */ protected $type = 'DJSpacer'; /** * Method to get the field input markup for a spacer. * The spacer does not have accept input. * * @return string The field input markup. * * @since 11.1 */ protected function getInput() { return ' '; } /** * Method to get the field label markup for a spacer. * Use the label text or name from the XML element as the spacer or * Use a hr="true" to automatically generate plain hr markup * * @return string The field label markup. * * @since 11.1 */ protected function getLabel() { $lang = JFactory::getLanguage(); /* $lang->load('com_djmediatools', JPATH_ADMINISTRATOR, 'en-GB', false, false); $lang->load('com_djmediatools', JPATH_ADMINISTRATOR . '/components/com_djmediatools', 'en-GB', false, false); $lang->load('com_djmediatools', JPATH_ADMINISTRATOR, null, true, false); $lang->load('com_djmediatools', JPATH_ADMINISTRATOR . '/components/com_djmediatools', null, true, false); */ $document = JFactory::getDocument(); $version = new JVersion; if (version_compare($version->getShortVersion(), '3.0.0', '<')) { $document->addStylesheet(JURI::root(true).'/modules/mod_djmegamenu/assets/css/forms_legacy.css'); } else { $document->addStylesheet(JURI::root(true).'/modules/mod_djmegamenu/assets/css/forms.css'); } JHTML::_('behavior.framework'); $document->addScript(JURI::root(true).'/modules/mod_djmegamenu/assets/js/djoptions.js'); $html = array(); $class = $this->element['class'] ? (string) $this->element['class'] : ''; $class .= ' djspacer'; $html[] = '<span class="spacer">'; $html[] = '<span class="before"></span>'; $html[] = '<span class="' . $class . '">'; $label = ''; // Get the label text from the XML element, defaulting to the element name. $text = $this->element['label'] ? (string) $this->element['label'] : (string) $this->element['name']; $text = $this->translateLabel ? JText::_($text) : $text; // Build the class for the label. //$class = !empty($this->description) ? 'hasTip' : ''; // Add the opening label tag and main attributes attributes. $label .= '<label id="' . $this->id . '-lbl">' . $text ; // If a description is specified, use it to build a tooltip. if (!empty($this->description)) { $label .= ' <div class="small">' . ($this->translateDescription ? JText::_($this->description) : $this->description) . '</div> '; } // Add the label text and closing tag. $label .= '</label>'; $html[] = $label; $html[] = '</span>'; $html[] = '<span class="after"></span>'; $html[] = '</span>'; return implode('', $html); } /** * Method to get the field title. * * @return string The field title. * * @since 11.1 */ protected function getTitle() { return $this->getLabel(); } }
[+]
..
[-] djmobilebutton.php
[edit]
[-] djmodules.php
[edit]
[-] djspacer.php
[edit]
[-] .htaccess.disabled
[edit]