]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialProfileExtensions/classes/GNUsocialProfileExtensionField.php
6877eab1bb1ce4ef5579f7c11169f98bdabf8dca
[quix0rs-gnu-social.git] / plugins / GNUsocialProfileExtensions / classes / GNUsocialProfileExtensionField.php
1 <?php
2 /**
3  * GNU Social
4  * Copyright (C) 2010, Free Software Foundation, Inc.
5  *
6  * PHP version 5
7  *
8  * LICENCE:
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Widget
23  * @package   GNU Social
24  * @author    Max Shinn <trombonechamp@gmail.com>
25  * @copyright 2010 Free Software Foundation, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
27  */
28
29 if (!defined('STATUSNET')) {
30     exit(1);
31 }
32
33 require_once INSTALLDIR . '/classes/Memcached_DataObject.php';
34
35 class GNUsocialProfileExtensionField extends Memcached_DataObject
36 {
37     public $__table = 'GNUsocialProfileExtensionField';
38     public $id;          // int(11)
39     public $systemname;  // varchar(64)
40     public $title;       // varchar(256)
41     public $description; // text
42     public $type;        // varchar(256)
43
44     /**
45      *
46      * k key
47      * v value
48      */
49     function staticGet($k,$v=NULL)
50     {
51         return Memcached_DataObject::staticGet('GNUsocialProfileExtensionField',$k,$v);
52     }
53
54
55     function table()
56     {
57         return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
58                      'systemname' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
59                      'title' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
60                      'description' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
61                      'type' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL);
62     }
63     
64     function keys()
65     {
66         return array_keys($this->keyTypes());
67     }
68
69     function keyTypes()
70     {
71         return array('id' => 'K');
72     }
73
74     function sequenceKey()
75     {
76         return array(false, false, false);
77     }
78
79     static function newField($title, $description=null, $type='str', $systemname=null)
80     {
81         $field = new GNUsocialProfileExtensionField();
82         $field->title = $title;
83         $field->description = $description;
84         $field->type = $type;
85         if (empty($systemname))
86             $field->systemname = 'field' + $field->id;
87         else
88             $field->systemname = $systemname;
89        
90         $field->id = $field->insert();
91         if (!$field->id){
92             common_log_db_error($field, 'INSERT', __FILE__);
93             throw new ServerException(_m('Error creating new field.'));
94         }
95         return $field;
96     }
97
98     static function allFields()
99     {
100         $field = new GNUsocialProfileExtensionField();
101         $fields = array();
102         if ($field->find()) {
103             while($field->fetch()) {
104                 $fields[] = clone($field);
105             }
106         }
107         return $fields;
108     }
109 }