blob: 043269a6ee3944b5365cf63a9aba9fc3f7567554 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<?php
Prado::using('Application.db.ActiveRecord');
Prado::using('Application.model.Calendar');
class User extends ActiveRecord {
const TABLE = 'users';
public $ID;
public $Login;
public $Password;
public $IsAdmin;
public $Timezone;
public $Language;
public $GroupedView;
public $LastLogin;
public static $COLUMN_MAPPING = [
'id' => 'ID',
'login' => 'Login',
'password' => 'Password',
'is_admin' => 'IsAdmin',
'timezone' => 'Timezone',
'language' => 'Language',
'grouped_view' => 'GroupedView',
'last_login' => 'LastLogin'
];
public static $RELATIONS = [
'Calendars' => [self::MANY_TO_MANY, 'Calendar', 'user_selections'],
'AuthKeys' => [self::HAS_MANY, 'UserAuthKey', '_user']
];
public static function finder($className=__CLASS__) {
return parent::finder($className);
}
}
?>
|