本文整理汇总了PHP中ZendX_JQuery_Form_Element_DatePicker::isValid方法的典型用法代码示例。如果您正苦于以下问题:PHP ZendX_JQuery_Form_Element_DatePicker::isValid方法的具体用法?PHP ZendX_JQuery_Form_Element_DatePicker::isValid怎么用?PHP ZendX_JQuery_Form_Element_DatePicker::isValid使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ZendX_JQuery_Form_Element_DatePicker
的用法示例。
在下文中一共展示了ZendX_JQuery_Form_Element_DatePicker::isValid方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: isValid
/**
* Validate element value
*
* If a translation adapter is registered, any error messages will be
* translated according to the current locale, using the given error code;
* if no matching translation is found, the original message will be
* utilized.
*
* Note: The *filtered* value is validated.
*
* @param mixed $value
* @param mixed $context
* @return boolean
*/
public function isValid($value, $context = null)
{
$validators = $this->getValidators();
if (!$this->getValidator('IsDate')) {
// Always as first validator
$isDate = new \MUtil_Validate_Date_IsDate();
$isDate->setDateFormat($this->_dateFormat);
array_unshift($validators, $isDate);
$this->setValidators($validators);
}
if ($format = $this->getDateFormat()) {
// Set the dataFormat if settable
foreach ($validators as $validator) {
if ($validator instanceof \MUtil_Validate_Date_FormatInterface || method_exists($validator, 'setDateFormat')) {
$validator->setDateFormat($format);
}
}
}
return parent::isValid($value, $context);
}