mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
f89d568a00
- replaced header image
15 lines
243 B
PHP
15 lines
243 B
PHP
<?php
|
|
|
|
class User extends AppModel {
|
|
var $name = 'User';
|
|
|
|
var $validate = array(
|
|
// Names are optional
|
|
//'firstname' =>VALID_NOT_EMPTY,
|
|
//'lastname' =>VALID_NOT_EMPTY,
|
|
'email' =>VALID_EMAIL
|
|
);
|
|
}
|
|
|
|
?>
|