Difference between #5 and #6 of
Create your own Validation Rule

Revision #6 has been created by Boaz on May 14, 2012, 12:37:38 PM with the memo:

adding type declaration (CModel) to the example validateAttribute() method.
« previous (#5) next (#7) »

Changes

Title unchanged

Create your own Validation Rule

Category unchanged

How-tos

Yii version unchanged

Tags unchanged

validator, validation rules, model validation, create validator

Content changed

[...]
* Validates the attribute of the object.
* If there is any error, the error message is added to the object.
* @param CModel $object the object being validated
* @param string $attribute the attribute being validated
*/
protected function validateAttribute(
CModel $object,$attribute)
{
// check the strength parameter used in the validation rule of our model
if ($this->strength == 'weak')
$pattern = $this->weak_pattern;
elseif ($this->strength == 'strong')
[...]
59 0
54 followers
Viewed: 272 588 times
Version: 1.1
Category: How-tos
Written by: nickcv
Last updated by: Gismo
Created on: Mar 31, 2011
Last updated: 11 years ago
Update Article

Revisions

View all history