]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Poll/User_poll_prefs.php
450a6b9cfb72c6361ab3a62d37a94fc3d5d84fc2
[quix0rs-gnu-social.git] / plugins / Poll / User_poll_prefs.php
1 <?php
2 /**
3  * Data class to record user prefs for polls
4  *
5  * PHP version 5
6  *
7  * @category PollPlugin
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@status.net>
10  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
11  * @link     http://status.net/
12  *
13  * StatusNet - the distributed open-source microblogging tool
14  * Copyright (C) 2012, StatusNet, Inc.
15  *
16  * This program is free software: you can redistribute it and/or modify
17  * it under the terms of the GNU Affero General Public License as published by
18  * the Free Software Foundation, either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the
24  * GNU Affero General Public License for more details.
25  *
26  * You should have received a copy of the GNU Affero General Public License
27  * along with this program. If not, see <http://www.gnu.org/licenses/>.
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 /**
35  * For storing the poll prefs
36  *
37  * @category PollPlugin
38  * @package  StatusNet
39  * @author   Brion Vibber <brion@status.net>
40  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
41  * @link     http://status.net/
42  *
43  * @see      DB_DataObject
44  */
45 class User_poll_prefs extends Managed_DataObject
46 {
47     public $__table = 'user_poll_prefs'; // table name
48     public $user_id;          // int id
49     public $hide_responses;   // boolean
50     public $created;          // datetime
51     public $modified;         // datetime
52
53     /**
54      * The One True Thingy that must be defined and declared.
55      */
56     public static function schemaDef()
57     {
58         return array(
59             'description' => 'Record of user preferences for polls',
60             'fields' => array(
61                 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user id'),
62                 'hide_responses' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'Hide all poll responses'),
63                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
64                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
65             ),
66             'primary key' => array('user_id')
67         );
68     }
69 }