]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialProfileExtensions/classes/GNUsocialProfileExtensionField.php
Merge branch 'strict-warnings' into 'nightly'
[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(191)   not 255 because utf8mb4 takes more space
41     public $description; // text
42     public $type;        // varchar(191)   not 255 because utf8mb4 takes more space
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' => 'serial', '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' => 191, 'description' => 'field title'),
53                 'description' => array('type' => 'text', 'not null' => true, 'description' => 'field description'),
54                 'type' => array('type' => 'varchar', 'not null' => true, 'length' => 191, '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     static function newField($title, $description=null, $type='str', $systemname=null)
66     {
67         $field = new GNUsocialProfileExtensionField();
68         $field->title = $title;
69         $field->description = $description;
70         $field->type = $type;
71         if (empty($systemname))
72             $field->systemname = 'field' + $field->id;
73         else
74             $field->systemname = $systemname;
75        
76         $field->id = $field->insert();
77         if (!$field->id){
78             common_log_db_error($field, 'INSERT', __FILE__);
79             throw new ServerException(_m('Error creating new field.'));
80         }
81         return $field;
82     }
83
84     static function allFields()
85     {
86         $field = new GNUsocialProfileExtensionField();
87         $fields = array();
88         if ($field->find()) {
89             while($field->fetch()) {
90                 $fields[] = clone($field);
91             }
92         }
93         return $fields;
94     }
95 }