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


PHP Zend_Form_Element_Select::isValid方法代码示例

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


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

示例1: isValid

 public function isValid($value, $context = null)
 {
     if (count($this->getMultiOptions()) == 0) {
         $this->setMultiOptions();
     }
     return parent::isValid($value, $context);
 }
开发者ID:dafik,项目名称:dfi,代码行数:7,代码来源:List.php

示例2: isValid

 public function isValid($value, $context = null)
 {
     $this->setValue($value);
     $value = $this->getValue();
     if ('' === $value || null === $value) {
         if (!$this->isRequired() && $this->getAllowEmpty()) {
             return true;
         } else {
             $this->addError('Value is required and can\'t be empty');
             return false;
         }
     }
     // Process
     $numValue = $value[0];
     $selValue = $value[1];
     // Validate number
     if (!in_array($selValue, array('lifetime', 'forever'))) {
         if (!is_numeric($numValue) || (int) $numValue != $numValue || $numValue <= 0) {
             $this->addError('Please enter a valid integer greater than zero.');
             return false;
         }
     } else {
         $value[0] = $numValue = '0';
     }
     // Make composite options
     $options = array();
     foreach ($this->options as $k => $v) {
         if (is_array($v)) {
             $options = array_merge($options, $v);
         } else {
             $options[$k] = $v;
         }
     }
     // Validate selection
     if (!isset($options[$selValue])) {
         $this->addError('Please select an option.');
         return false;
     }
     $valid = parent::isValid($value, $context);
     return $valid;
 }
开发者ID:febryantosulistyo,项目名称:ClassicSocial,代码行数:41,代码来源:Duration.php

示例3: isValid

 /**
  * Is the value provided valid?
  *
  * Autoregisters InArray validator if necessary.
  *
  * @param  string $value
  * @param  mixed $context
  * @return bool
  */
 public function isValid($value, $context = null)
 {
     if ($this->registerInArrayValidator()) {
         if (!$this->getValidator('InArray')) {
             $multiOptions = $this->getMultiOptions();
             $options = array();
             foreach ($multiOptions as $opt_value => $opt_label) {
                 // check if it`s array
                 if (is_array($opt_label)) {
                     $isGroup = !self::isArrayStyleLabel($opt_label);
                 } else {
                     $isGroup = false;
                 }
                 // optgroup instead of option label
                 if ($isGroup) {
                     $options = array_merge($options, array_keys($opt_label));
                 } else {
                     $options[] = $opt_value;
                 }
             }
             $this->addValidator('InArray', true, array($options));
         }
     }
     return parent::isValid($value, $context);
 }
开发者ID:jager,项目名称:cms,代码行数:34,代码来源:DbSelect.php


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