当前位置: 首页>>代码示例>>PHP>>正文


PHP Select::getValueOptions方法代码示例

本文整理汇总了PHP中Zend\Form\Element\Select::getValueOptions方法的典型用法代码示例。如果您正苦于以下问题:PHP Select::getValueOptions方法的具体用法?PHP Select::getValueOptions怎么用?PHP Select::getValueOptions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend\Form\Element\Select的用法示例。


在下文中一共展示了Select::getValueOptions方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getValueOptions

 /**
  * {@inheritDoc}
  */
 public function getValueOptions()
 {
     if (!count($this->valueOptions)) {
         $locales = $this->getLocaleList();
         $options = parent::getValueOptions();
         foreach ($locales as $code => $name) {
             $options[$code] = $this->getDisplayNames() ? $name : $code;
         }
         $this->setValueOptions($options);
     }
     return parent::getValueOptions();
 }
开发者ID:coolms,项目名称:common,代码行数:15,代码来源:LocaleSelect.php

示例2: getValueOptions

 /**
  * {@inheritDoc}
  */
 public function getValueOptions()
 {
     if (!count($this->valueOptions)) {
         $currencies = $this->getCurrencyList()->getCurrencies();
         $options = parent::getValueOptions();
         foreach ($currencies as $currency) {
             $name = $this->getDisplayNames() ? $currency->getName() : $currency->getIsoCode();
             $options[$currency->getIsoCode()] = $name;
         }
         $this->setValueOptions($options);
     }
     return parent::getValueOptions();
 }
开发者ID:coolms,项目名称:money,代码行数:16,代码来源:CurrencySelect.php

示例3: getValueOptions

 /**
  * @return array
  */
 public function getValueOptions()
 {
     if (!count($this->valueOptions)) {
         $names = Currency::getAvailableCurrencyNames();
         $codes = $this->getCurrencyList()->getAllow();
         $options = parent::getValueOptions();
         foreach ($codes as $code) {
             $name = $this->getDisplayNames() ? $names[$code] : $code;
             $options[$code] = $name;
         }
         $this->setValueOptions($options);
     }
     return parent::getValueOptions();
 }
开发者ID:netglue,项目名称:zf2-money-module,代码行数:17,代码来源:SelectCurrency.php

示例4: getValueOptions

 public function getValueOptions()
 {
     if ($this->initialized) {
         return parent::getValueOptions();
     }
     $this->initialized = true;
     $valueOptions = [];
     foreach ($this->clientRepository->findAllActive() as $client) {
         $valueOptions[$client->getId()] = $client->getName();
     }
     $this->setValueOptions($valueOptions);
     $this->insertSelectedClientIfRequired($this->value);
     return parent::getValueOptions();
 }
开发者ID:DavidHavl,项目名称:Ajasta,代码行数:14,代码来源:ClientSelect.php

示例5: testDeprecateOptionsInAttributes

 public function testDeprecateOptionsInAttributes()
 {
     $element = new SelectElement();
     $valueOptions = array('Option 1' => 'option1', 'Option 2' => 'option2', 'Option 3' => 'option3');
     $element->setAttributes(array('multiple' => true, 'options' => $valueOptions));
     $this->assertEquals($valueOptions, $element->getValueOptions());
 }
开发者ID:rajanlamic,项目名称:IntTest,代码行数:7,代码来源:SelectTest.php

示例6: testUnsetUndefinedValueOption

 public function testUnsetUndefinedValueOption()
 {
     $element = new SelectElement();
     $element->setValueOptions(array('Option 1' => 'option1', 'Option 2' => 'option2', 'Option 3' => 'option3'));
     $element->unsetValueOption('Option Undefined');
     $valueOptions = $element->getValueOptions();
     $this->assertArrayNotHasKey('Option Undefined', $valueOptions);
 }
开发者ID:pnaq57,项目名称:zf2demo,代码行数:8,代码来源:SelectTest.php

示例7: getValueOptions

 public function getValueOptions()
 {
     $options = parent::getValueOptions();
     return true === $this->getOption('include_all_option') ? array_merge(['all' => 'All'], $options) : $options;
 }
开发者ID:cross-solution,项目名称:yawik,代码行数:5,代码来源:StatusSelect.php


注:本文中的Zend\Form\Element\Select::getValueOptions方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。