blob: a85be6d8e0b2160aad6e1a793261a7ddf5919614 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
namespace app\models;
class Profile extends \lithium\data\Model {
public static function __init()
{
Validator::add('ageism', function($birthday) {
return true;
} );
}
public $validates = array(
'birthday' => array(array('date'))
);
}
?>
|