/
home
/
assocoweys
/
assoco
/
modules
/
mod_resp_animate_hover
/
fields
/
Upload File
HOME
<?php /** * @id $Id$ * @author mod_slideshow3.php * @package JB Slideshow3 * @copyright Copyright (C) 2006 - 2010 Joomla Bamboo. http://www.joomlabamboo.com All rights reserved. * @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html */ // no direct access defined('_JEXEC') or die('Restricted access'); class JFormFieldBuffer extends JFormField { protected $type = 'buffer'; protected function getInput($name, $value, &$node, $control_name){ // Output return ' <div style="font-weight:bold;font-size:14px;color:#333;padding:4px;margin:0;background:#eee"> '.JText::_($value).' </div> '; } function fetchTooltip($label, $description, &$node, $control_name, $name){ // Output return ' '; } }