當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Form_Input::_getInput方法代碼示例

本文整理匯總了PHP中Form_Input::_getInput方法的典型用法代碼示例。如果您正苦於以下問題:PHP Form_Input::_getInput方法的具體用法?PHP Form_Input::_getInput怎麽用?PHP Form_Input::_getInput使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Form_Input的用法示例。


在下文中一共展示了Form_Input::_getInput方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _getInput

    protected function _getInput()
    {
        $element = parent::_getInput();
        $options = '';
        foreach ($this->_values as $value => $name) {
            // Things can get weird if we have mixed types
            $sval = $this->_value;
            if (gettype($value) == "integer" && gettype($sval) == "string") {
                $value = strval($value);
            }
            if (isset($this->_attributes['multiple'])) {
                $selected = in_array($value, (array) $sval);
            } else {
                $selected = $sval == $value;
            }
            if (!empty(trim($name)) || is_numeric($name)) {
                $name_str = htmlspecialchars(gettext($name));
            } else {
                // Fixes HTML5 validation: Element option without attribute label must not be empty
                $name_str = " ";
            }
            $options .= '<option value="' . htmlspecialchars($value) . '"' . ($selected ? ' selected' : '') . '>' . $name_str . '</option>';
        }
        return <<<EOT
\t{$element}
\t\t{$options}
\t</select>
EOT;
    }
開發者ID:NewEraCracker,項目名稱:pfsense,代碼行數:29,代碼來源:Select.class.php

示例2: _getInput

    protected function _getInput()
    {
        $element = parent::_getInput();
        $options = '';
        foreach ($this->_values as $value => $name) {
            // Things can get wierd if we have mixed types
            $sval = $this->_value;
            if (gettype($value) == "integer" && gettype($sval) == "string") {
                $value = strval($value);
            }
            if (isset($this->_attributes['multiple'])) {
                $selected = in_array($value, (array) $sval);
            } else {
                $selected = $sval == $value;
            }
            if (!empty($name) || $name == '0') {
                $options .= '<option value="' . htmlspecialchars($value) . '"' . ($selected ? ' selected' : '') . '>' . htmlspecialchars(gettext($name)) . '</option>';
            }
        }
        return <<<EOT
\t{$element}
\t\t{$options}
\t</select>
EOT;
    }
開發者ID:ffdesousa,項目名稱:pfsense,代碼行數:25,代碼來源:Select.class.php

示例3: _getInput

 protected function _getInput()
 {
     $input = parent::_getInput();
     if (!isset($this->_attributes['href'])) {
         return $input;
     }
     return $input . htmlspecialchars($this->_title) . '</a>';
 }
開發者ID:KyleJohnstonNet,項目名稱:pfsense,代碼行數:8,代碼來源:Button.class.php

示例4: _getInput

    protected function _getInput()
    {
        $element = parent::_getInput();
        $value = htmlspecialchars($this->_value);
        return <<<EOT
\t{$element}{$value}</textarea>
EOT;
    }
開發者ID:KyleJohnstonNet,項目名稱:pfsense,代碼行數:8,代碼來源:Textarea.class.php

示例5: _getInput

 protected function _getInput()
 {
     $input = parent::_getInput();
     if (!isset($this->_description)) {
         return $input;
     }
     return '<label>' . $input . ' ' . htmlspecialchars(gettext($this->_description)) . '</label>';
 }
開發者ID:michaeleino,項目名稱:pfsense,代碼行數:8,代碼來源:Checkbox.class.php

示例6: _getInput

 protected function _getInput()
 {
     $input = parent::_getInput();
     if (empty($this->_description)) {
         return '<label class="chkboxlbl">' . $input . '</label>';
     }
     return '<label class="chkboxlbl">' . $input . ' ' . htmlspecialchars(gettext($this->_description)) . '</label>';
 }
開發者ID:KyleJohnstonNet,項目名稱:pfsense,代碼行數:8,代碼來源:Checkbox.class.php

示例7: _getInput

    protected function _getInput()
    {
        $input = parent::_getInput();
        if (!isset($this->_mask)) {
            return $input;
        }
        return <<<EOT
\t\t<div class="input-group">
\t\t\t{$input}
\t\t\t<span class="input-group-addon input-group-inbetween pfIpMask">/</span>
\t\t\t{$this->_mask}
\t\t</div>
EOT;
    }
開發者ID:NewEraCracker,項目名稱:pfsense,代碼行數:14,代碼來源:IpAddress.class.php


注:本文中的Form_Input::_getInput方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。