cakephp multilingual validation
Website which is multilingual, messages will be also multilingual. To set the different message follow the below some simple steps.
Paste following code in app_model.php
Code:
Website which is multilingual, messages will be also multilingual. To set the different message follow the below some simple steps.
Paste following code in app_model.php
Code:
function invalidate($field, $value = null) {field collation in database must be "utf8_unicode_ci"
if (!is_array($this->validationErrors)) {
$this->validationErrors = array();
}
if(empty($value)) {
$value = true;
}
$this->validationErrors[$field] = __($value, true);
}
0 Comment:
Post a Comment