]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OpenID/User_openid_trustroot.php
Updating all Memcached_DataObject extended classes to Managed_DataObject
[quix0rs-gnu-social.git] / plugins / OpenID / User_openid_trustroot.php
1 <?php
2 /**
3  * Table Definition for user_openid_trustroot
4  */
5
6 if (!defined('STATUSNET')) {
7     exit(1);
8 }
9
10 class User_openid_trustroot extends Managed_DataObject
11 {
12     ###START_AUTOCODE
13     /* the code below is auto generated do not remove the above tag */
14
15     public $__table = 'user_openid_trustroot';                     // table name
16     public $trustroot;                         // varchar(255) primary_key not_null
17     public $user_id;                         // int(4)  primary_key not_null
18     public $created;                         // datetime()   not_null
19     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
20
21     /* the code above is auto generated do not remove the tag below */
22     ###END_AUTOCODE
23
24     function pkeyGet($kv)
25     {
26         return Memcached_DataObject::pkeyGet('User_openid_trustroot', $kv);
27     }
28
29     function table()
30     {
31         $db = $this->getDatabaseConnection();
32         $dbtype = $db->phptype; // Database type is stored here. Crazy but true.
33
34         return array('trustroot' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
35                      'user_id'   => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
36                      'created'   => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL,
37                      'modified'  => ($dbtype == 'mysql' || $dbtype == 'mysqli') ?
38                      DB_DATAOBJECT_MYSQLTIMESTAMP + DB_DATAOBJECT_NOTNULL :
39                      DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME
40                      );
41     }
42
43     function keys()
44     {
45         return array_keys($this->keyTypes());
46     }
47
48     function keyTypes()
49     {
50         return array('trustroot' => 'K', 'user_id' => 'K');
51     }
52 }