| Current Path : /home/antonen/chenglong.lt/plugins/system/miniteksystemmessages/admin/fields/ |
| Current File : /home/antonen/chenglong.lt/plugins/system/miniteksystemmessages/admin/fields/separator.php |
<?php
/**
* @title Minitek System Messages
* @copyright Copyright (C) 2011-2017 Minitek, All rights reserved.
* @license GNU General Public License version 3 or later.
* @author url https://www.minitek.gr/
* @developers Minitek.gr / Yannis Maragos
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
jimport('joomla.form.formfield');
class JFormFieldSeparator extends JFormField
{
protected $type = 'Separator';
protected function getInput()
{
$text = (string)$this->element['text'];
return '<div id="'.$this->id.'" class="mmSeparator'.(($text != '') ? ' hasText' : '').'" title="'. JText::_($this->element['desc']) .'"><span>' . JText::_($text) . '</span></div>';
}
}