本文整理汇总了PHP中AppModel::validates方法的典型用法代码示例。如果您正苦于以下问题:PHP AppModel::validates方法的具体用法?PHP AppModel::validates怎么用?PHP AppModel::validates使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AppModel
的用法示例。
在下文中一共展示了AppModel::validates方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: validates
/**
* validates
*
* @param string $options An optional array of custom options to be made available in the beforeValidate callback
* @return boolean True if there are no errors
*/
public function validates($options = array())
{
$result = parent::validates($options);
if (isset($this->validationErrors['password'])) {
$this->invalidate('password_1');
$this->invalidate('password_2');
}
return $result;
}
示例2: validates
function validates()
{
// convert database format.
$this->hours();
$this->spent_on();
return parent::validates();
}
示例3: validates
function validates()
{
// convert database format.
$this->estimated_hours();
# if self.due_date.nil? && @attributes['due_date'] && !@attributes['due_date'].empty?
# errors.add :due_date, :activerecord_error_not_a_date
# end
#
# if self.due_date and self.start_date and self.due_date < self.start_date
# errors.add :due_date, :activerecord_error_greater_than_start_date
# end
#
# if start_date && soonest_start && start_date < soonest_start
# errors.add :start_date, :activerecord_error_invalid
# end
return parent::validates();
}