Your IP : 216.73.216.247


Current Path : /home/nicholsonsmith/public_html/templates/gk_steakhouse/admin/elements/
Upload File :
Current File : /home/nicholsonsmith/public_html/templates/gk_steakhouse/admin/elements/line.php

<?php

defined('JPATH_BASE') or die;

jimport('joomla.form.formfield');

class JFormFieldLine extends JFormField {
	protected $type = 'Line';

	protected function getInput() {
		$text  	= (string) $this->element['text'];
		
		return '<div class="gkFormLine'.(($text != '') ? ' hasText hasTip' : '').'" title="'. JText::_($this->element['desc']) .'"><span>' . JText::_($text) . '</span></div>';
	}
}

?>