From: Evan Prodromou Date: Sun, 1 Nov 2009 19:24:40 +0000 (-0500) Subject: add data definitions to user flag classes X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e42967fe3e9fd6b1bdca3b1d1c72f66b2e0b86d1;p=quix0rs-gnu-social.git add data definitions to user flag classes --- diff --git a/plugins/UserFlag/Notice_flag.php b/plugins/UserFlag/Notice_flag.php index adb0eadd17..14e3b84028 100644 --- a/plugins/UserFlag/Notice_flag.php +++ b/plugins/UserFlag/Notice_flag.php @@ -38,4 +38,16 @@ class Notice_flag extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + function table() { + return array( + 'flag' => DB_DATAOBJECT_STR, + 'display' => DB_DATAOBJECT_STR, + 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + ); + } + + function keys() { + return array('flag'); + } } diff --git a/plugins/UserFlag/Profile_flag.php b/plugins/UserFlag/Profile_flag.php index 41d449657c..1a99f10617 100644 --- a/plugins/UserFlag/Profile_flag.php +++ b/plugins/UserFlag/Profile_flag.php @@ -38,4 +38,16 @@ class Profile_flag extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + function table() { + return array( + 'flag' => DB_DATAOBJECT_STR, + 'display' => DB_DATAOBJECT_STR, + 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + ); + } + + function keys() { + return array('flag'); + } } diff --git a/plugins/UserFlag/User_flag_notice.php b/plugins/UserFlag/User_flag_notice.php index e16993997d..dc08702c44 100644 --- a/plugins/UserFlag/User_flag_notice.php +++ b/plugins/UserFlag/User_flag_notice.php @@ -35,8 +35,26 @@ class User_flag_notice extends Memcached_DataObject public $created; // datetime not_null default_0000-00-00%2000%3A00%3A00 /* Static get */ - function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('User_flag_notice',$k,$v); } + function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('User_flag_notice',$k,$v); } /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + function table() { + return array( + 'notice_id' => DB_DATAOBJECT_INT, + 'user_id' => DB_DATAOBJECT_INT, + 'flag' => DB_DATAOBJECT_STR, + 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + ); + } + + function keys() { + return array('notice_id', 'user_id'); + } + + function &pkeyGet($kv) + { + return Memcached_DataObject::pkeyGet('User_flag_notice', $kv); + } } diff --git a/plugins/UserFlag/User_flag_profile.php b/plugins/UserFlag/User_flag_profile.php index 419d34d2fe..99dce7529b 100644 --- a/plugins/UserFlag/User_flag_profile.php +++ b/plugins/UserFlag/User_flag_profile.php @@ -39,4 +39,22 @@ class User_flag_profile extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + function table() { + return array( + 'profile_id' => DB_DATAOBJECT_INT, + 'user_id' => DB_DATAOBJECT_INT, + 'flag' => DB_DATAOBJECT_STR, + 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + ); + } + + function keys() { + return array('profile_id', 'user_id'); + } + + function &pkeyGet($kv) + { + return Memcached_DataObject::pkeyGet('User_flag_profile', $kv); + } }