本文整理汇总了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);
}
示例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;
}
示例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);
}