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


PHP Element::getValue方法代碼示例

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


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

示例1: getValue

 /**
  * {@inheritDoc}
  */
 public function getValue()
 {
     if (null === $this->value) {
         $this->value = __('Submit');
     }
     return parent::getValue();
 }
開發者ID:Andyyang1981,項目名稱:pi,代碼行數:10,代碼來源:Submit.php

示例2: getValue

 /**
  * Retrieve the element value
  *
  * If the value is a DateTime object, and $returnFormattedValue is true
  * (the default), we return the string
  * representation using the currently registered format.
  *
  * If $returnFormattedValue is false, the original value will be
  * returned, regardless of type.
  *
  * @param  bool $returnFormattedValue
  * @return mixed
  */
 public function getValue($returnFormattedValue = true)
 {
     $value = parent::getValue();
     if (!$value instanceof PhpDateTime || !$returnFormattedValue) {
         return $value;
     }
     $format = $this->getFormat();
     return $value->format($format);
 }
開發者ID:mindfeederllc,項目名稱:openemr,代碼行數:22,代碼來源:DateTime.php

示例3: __invoke

    public function __invoke(Element $element)
    {
        $value = $element->getValue();
        if (!$value) {
            $value = 'default';
        }
        $view = $this->getView();
        $default = $view->escapeHtmlAttr($view->basePath('img/avatars/' . $value . '.png'));
        $id = uniqid('dialog-', false);
        $element->setOption('dialog_id', $id);
        $name = $view->escapeHtmlAttr($element->getName());
        $html = <<<EOT
<div class="zource-avatar-selection zui-file-selection-trigger-container" data-zui-file-selection-trigger="#file-selection-{$id}">
    <input type="hidden" name="{$name}" value="{$value}">

    <p>
        <img src="{$default}" alt="Avatar" tabindex="1" class="zui-file-selection-trigger-thumb">
    </p>
</div>
EOT;
        return $html;
    }
開發者ID:zource,項目名稱:zource,代碼行數:22,代碼來源:FormAvatar.php

示例4: getValue

 /**
  * Get value
  *
  * If element type is one of the button types, returns the label.
  *
  * @param  \Zend\Form\Element $element
  * @return string|null
  */
 public function getValue($element)
 {
     if (!$element instanceof Element) {
         return null;
     }
     foreach ($this->_buttonTypes as $type) {
         if ($element instanceof $type) {
             if (stristr($type, 'button')) {
                 $element->content = $element->getLabel();
                 return null;
             }
             return $element->getLabel();
         }
     }
     return $element->getValue();
 }
開發者ID:bradley-holt,項目名稱:zf2,代碼行數:24,代碼來源:ViewHelper.php

示例5: testPassingConfigObjectToConstructorSetsObjectState

 public function testPassingConfigObjectToConstructorSetsObjectState()
 {
     $config = new Config($this->getOptions());
     $element = new Element($config);
     $this->assertEquals('changed', $element->getName());
     $this->assertEquals('foo', $element->getValue());
     $this->assertEquals('bar', $element->getLabel());
     $this->assertEquals(50, $element->getOrder());
     $this->assertFalse($element->isRequired());
     $this->assertEquals('bar', $element->foo);
     $this->assertEquals('bat', $element->baz);
 }
開發者ID:bradley-holt,項目名稱:zf2,代碼行數:12,代碼來源:ElementTest.php

示例6: getValue

 /**
  * @inheritdoc
  */
 public function getValue()
 {
     return $this->element->getValue();
 }
開發者ID:adacap,項目名稱:3agest-prototype,代碼行數:7,代碼來源:Element.php

示例7: getUser

 /**
  * Gets the user entity or null.
  *
  * @return UserInterface|null
  */
 public function getUser()
 {
     $value = parent::getValue();
     return $value instanceof UserInterface ? $value : null;
 }
開發者ID:webpants,項目名稱:YAWIK,代碼行數:10,代碼來源:Employee.php


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