Source for file hidden.php
Documentation is available at hidden.php
* @package Joomla.Platform
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
* Form Field class for the Joomla Platform.
* Provides a hidden field
* @package Joomla.Platform
* @link http://www.w3.org/TR/html-markup/input.hidden.html#input.hidden
protected $type =
'Hidden';
* Method to get the field input markup.
* @return string The field input markup.
// Initialize some field attributes.
$class =
!empty($this->class) ?
' class="' .
$this->class .
'"' :
'';
$disabled =
$this->disabled ?
' disabled' :
'';
// Initialize JavaScript field attributes.
return '<input type="hidden" name="' .
$this->name .
'" id="' .
$this->id .
'" value="'
Documentation generated on Tue, 19 Nov 2013 15:04:41 +0100 by phpDocumentor 1.4.3