Merge pull request #9968 from fuzionnz/remove_crm_core_form_generateid
[civicrm-core.git] / CRM / Core / DAO / OpenID.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27 /**
28 * @package CRM
29 * @copyright CiviCRM LLC (c) 2004-2017
30 *
31 * Generated from xml/schema/CRM/Core/OpenID.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
33 * (GenCodeChecksum:901c3d244415b1f62513c4cb0acabb40)
34 */
35 require_once 'CRM/Core/DAO.php';
36 require_once 'CRM/Utils/Type.php';
37 /**
38 * CRM_Core_DAO_OpenID constructor.
39 */
40 class CRM_Core_DAO_OpenID extends CRM_Core_DAO {
41 /**
42 * Static instance to hold the table name.
43 *
44 * @var string
45 */
46 static $_tableName = 'civicrm_openid';
47 /**
48 * Should CiviCRM log any modifications to this table in the civicrm_log table.
49 *
50 * @var boolean
51 */
52 static $_log = false;
53 /**
54 * Unique OpenID ID
55 *
56 * @var int unsigned
57 */
58 public $id;
59 /**
60 * FK to Contact ID
61 *
62 * @var int unsigned
63 */
64 public $contact_id;
65 /**
66 * Which Location does this email belong to.
67 *
68 * @var int unsigned
69 */
70 public $location_type_id;
71 /**
72 * the OpenID (or OpenID-style http://username.domain/) unique identifier for this contact mainly used for logging in to CiviCRM
73 *
74 * @var string
75 */
76 public $openid;
77 /**
78 * Whether or not this user is allowed to login
79 *
80 * @var boolean
81 */
82 public $allowed_to_login;
83 /**
84 * Is this the primary email for this contact and location.
85 *
86 * @var boolean
87 */
88 public $is_primary;
89 /**
90 * Class constructor.
91 */
92 function __construct() {
93 $this->__table = 'civicrm_openid';
94 parent::__construct();
95 }
96 /**
97 * Returns foreign keys and entity references.
98 *
99 * @return array
100 * [CRM_Core_Reference_Interface]
101 */
102 static function getReferenceColumns() {
103 if (!isset(Civi::$statics[__CLASS__]['links'])) {
104 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
105 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'contact_id', 'civicrm_contact', 'id');
106 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
107 }
108 return Civi::$statics[__CLASS__]['links'];
109 }
110 /**
111 * Returns all the column names of this table
112 *
113 * @return array
114 */
115 static function &fields() {
116 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
117 Civi::$statics[__CLASS__]['fields'] = array(
118 'id' => array(
119 'name' => 'id',
120 'type' => CRM_Utils_Type::T_INT,
121 'title' => ts('Open ID identifier') ,
122 'description' => 'Unique OpenID ID',
123 'required' => true,
124 'table_name' => 'civicrm_openid',
125 'entity' => 'OpenID',
126 'bao' => 'CRM_Core_BAO_OpenID',
127 ) ,
128 'contact_id' => array(
129 'name' => 'contact_id',
130 'type' => CRM_Utils_Type::T_INT,
131 'title' => ts('OpenID Contact') ,
132 'description' => 'FK to Contact ID',
133 'table_name' => 'civicrm_openid',
134 'entity' => 'OpenID',
135 'bao' => 'CRM_Core_BAO_OpenID',
136 'FKClassName' => 'CRM_Contact_DAO_Contact',
137 ) ,
138 'location_type_id' => array(
139 'name' => 'location_type_id',
140 'type' => CRM_Utils_Type::T_INT,
141 'title' => ts('OpenID Location Type') ,
142 'description' => 'Which Location does this email belong to.',
143 'table_name' => 'civicrm_openid',
144 'entity' => 'OpenID',
145 'bao' => 'CRM_Core_BAO_OpenID',
146 ) ,
147 'openid' => array(
148 'name' => 'openid',
149 'type' => CRM_Utils_Type::T_STRING,
150 'title' => ts('OpenID') ,
151 'description' => 'the OpenID (or OpenID-style http://username.domain/) unique identifier for this contact mainly used for logging in to CiviCRM',
152 'maxlength' => 255,
153 'size' => CRM_Utils_Type::HUGE,
154 'import' => true,
155 'where' => 'civicrm_openid.openid',
156 'headerPattern' => '/^Open.?ID|u(niq\w*)?.?ID/i',
157 'dataPattern' => '/^[\w\/\:\.]+$/',
158 'export' => true,
159 'rule' => 'url',
160 'table_name' => 'civicrm_openid',
161 'entity' => 'OpenID',
162 'bao' => 'CRM_Core_BAO_OpenID',
163 ) ,
164 'allowed_to_login' => array(
165 'name' => 'allowed_to_login',
166 'type' => CRM_Utils_Type::T_BOOLEAN,
167 'title' => ts('Allowed to login?') ,
168 'description' => 'Whether or not this user is allowed to login',
169 'required' => true,
170 'table_name' => 'civicrm_openid',
171 'entity' => 'OpenID',
172 'bao' => 'CRM_Core_BAO_OpenID',
173 ) ,
174 'is_primary' => array(
175 'name' => 'is_primary',
176 'type' => CRM_Utils_Type::T_BOOLEAN,
177 'title' => ts('Is OpenID Primary?') ,
178 'description' => 'Is this the primary email for this contact and location.',
179 'table_name' => 'civicrm_openid',
180 'entity' => 'OpenID',
181 'bao' => 'CRM_Core_BAO_OpenID',
182 ) ,
183 );
184 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
185 }
186 return Civi::$statics[__CLASS__]['fields'];
187 }
188 /**
189 * Return a mapping from field-name to the corresponding key (as used in fields()).
190 *
191 * @return array
192 * Array(string $name => string $uniqueName).
193 */
194 static function &fieldKeys() {
195 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
196 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
197 }
198 return Civi::$statics[__CLASS__]['fieldKeys'];
199 }
200 /**
201 * Returns the names of this table
202 *
203 * @return string
204 */
205 static function getTableName() {
206 return self::$_tableName;
207 }
208 /**
209 * Returns if this table needs to be logged
210 *
211 * @return boolean
212 */
213 function getLog() {
214 return self::$_log;
215 }
216 /**
217 * Returns the list of fields that can be imported
218 *
219 * @param bool $prefix
220 *
221 * @return array
222 */
223 static function &import($prefix = false) {
224 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'openid', $prefix, array());
225 return $r;
226 }
227 /**
228 * Returns the list of fields that can be exported
229 *
230 * @param bool $prefix
231 *
232 * @return array
233 */
234 static function &export($prefix = false) {
235 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'openid', $prefix, array());
236 return $r;
237 }
238 }