b0y-101 Mini Shell


Current Path : E:/www/buriram/libraries/nextend2/nextend/library/libraries/form/elements/
File Upload :
Current File : E:/www/buriram/libraries/nextend2/nextend/library/libraries/form/elements/hidden.php

<?php

class N2ElementHidden extends N2Element {

    protected $hasTooltip = false;

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

    protected function fetchElement() {

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

Copyright © 2019 by b0y-101