/
home
/
assocoweys
/
assoco
/
modules
/
mod_zoominfo
/
elements
/
Upload File
HOME
<?php /** * @version $Id: spacer.php 20206 2011-01-09 17:11:35Z chdemko $ * @package Joomla.Framework * @subpackage Form * @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('JPATH_BASE') or die; jimport('joomla.form.formfield'); /** * Form Field class for the Joomla Framework. * * @package Joomla.Framework * @subpackage Form * @since 1.6 */ class JFormFieldSpacer2 extends JFormField { /** * The form field type. * * @var string * @since 1.6 */ protected $type = 'Spacer2'; /** * Method to get the field input markup. * * @return string The field input markup. * @since 1.6 */ protected function getInput() { return '<div style="width: 345px; float: left; display: block; font-weight:normal;font-size:12px;color:#fff;padding:3px;margin:0px;background:#6db03c;"> '.JText::_($this->value).' </div>'; } /** * Method to get the field title. * * @return string The field title. * @since 1.6 */ protected function getTitle() { return $this->getLabel(); } }