]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialProfileExtensions/classes/GNUsocialProfileExtensionField.php
9574863c58be63d601823c09d8a9c0707c275230
[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 Managed_DataObject
36 {
37     public $__table = 'GNUsocialProfileExtensionField';
38     public $id;          // int(11)
39     public $systemname;  // varchar(64)
40     public $title;       // varchar(255)
41     public $description; // text
42     public $type;        // varchar(255)
43     public $created;     // datetime()   not_null
44     public $modified;    // timestamp()   not_null default_CURRENT_TIMESTAMP
45
46     public static function schemaDef()
47     {
48         return array(
49             'fields' => array(
50                 'id' => array('type' => 'int', 'not null' => true, 'description' => 'Unique ID for extension field'),
51                 'systemname' => array('type' => 'varchar', 'not null' => true, 'length' => 64, 'description' => 'field systemname'),
52                 'title' => array('type' => 'varchar', 'not null' => true, 'length' => 255, 'description' => 'field title'),
53                 'description' => array('type' => 'text', 'not null' => true, 'description' => 'field description'),
54                 'type' => array('type' => 'varchar', 'not null' => true, 'length' => 255, 'description' => 'field type'),
55                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
56                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
57             ),
58             'primary key' => array('id'),
59             'indexes' => array(
60                 'gnusocialprofileextensionfield_title_idx' => array('title'),
61             ),
62         );
63     }
64
65     function keyTypes()
66     {
67         return array('id' => 'K');
68     }
69
70     function sequenceKey()
71     {
72         return array(false, false, false);
73     }
74
75     static function newField($title, $description=null, $type='str', $systemname=null)
76     {
77         $field = new GNUsocialProfileExtensionField();
78         $field->title = $title;
79         $field->description = $description;
80         $field->type = $type;
81         if (empty($systemname))
82             $field->systemname = 'field' + $field->id;
83         else
84             $field->systemname = $systemname;
85        
86         $field->id = $field->insert();
87         if (!$field->id){
88             common_log_db_error($field, 'INSERT', __FILE__);
89             throw new ServerException(_m('Error creating new field.'));
90         }
91         return $field;
92     }
93
94     static function allFields()
95     {
96         $field = new GNUsocialProfileExtensionField();
97         $fields = array();
98         if ($field->find()) {
99             while($field->fetch()) {
100                 $fields[] = clone($field);
101             }
102         }
103         return $fields;
104     }
105 }