Merge pull request #23419 from chrisgaraffa/contactheader-regions
[civicrm-core.git] / CRM / Core / DAO / OpenID.php
CommitLineData
e501603b 1<?php
c3fc2621 2
e501603b
TO
3/**
4 * @package CRM
ca5cec67 5 * @copyright CiviCRM LLC https://civicrm.org/licensing
e501603b
TO
6 *
7 * Generated from xml/schema/CRM/Core/OpenID.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
c1e814c7 9 * (GenCodeChecksum:7c70e03ffe06633c9e61c5845967d286)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the OpenID entity.
f41f0342 14 */
e501603b 15class CRM_Core_DAO_OpenID extends CRM_Core_DAO {
929a1c14
CW
16 const EXT = 'civicrm';
17 const TABLE_ADDED = '2.0';
c3fc2621 18
e501603b 19 /**
f41f0342 20 * Static instance to hold the table name.
e501603b
TO
21 *
22 * @var string
23 */
fa45b5b9 24 public static $_tableName = 'civicrm_openid';
c3fc2621 25
e501603b 26 /**
f41f0342 27 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b 28 *
c3fc2621 29 * @var bool
e501603b 30 */
fa45b5b9 31 public static $_log = FALSE;
c3fc2621 32
e501603b
TO
33 /**
34 * Unique OpenID ID
35 *
28979d65
CW
36 * @var int|string|null
37 * (SQL type: int unsigned)
38 * Note that values will be retrieved from the database as a string.
e501603b
TO
39 */
40 public $id;
c3fc2621 41
e501603b
TO
42 /**
43 * FK to Contact ID
44 *
28979d65
CW
45 * @var int|string|null
46 * (SQL type: int unsigned)
47 * Note that values will be retrieved from the database as a string.
e501603b
TO
48 */
49 public $contact_id;
c3fc2621 50
e501603b
TO
51 /**
52 * Which Location does this email belong to.
53 *
28979d65
CW
54 * @var int|string|null
55 * (SQL type: int unsigned)
56 * Note that values will be retrieved from the database as a string.
e501603b
TO
57 */
58 public $location_type_id;
c3fc2621 59
e501603b
TO
60 /**
61 * the OpenID (or OpenID-style http://username.domain/) unique identifier for this contact mainly used for logging in to CiviCRM
62 *
28979d65
CW
63 * @var string|null
64 * (SQL type: varchar(255))
65 * Note that values will be retrieved from the database as a string.
e501603b
TO
66 */
67 public $openid;
c3fc2621 68
e501603b
TO
69 /**
70 * Whether or not this user is allowed to login
71 *
28979d65
CW
72 * @var bool|string
73 * (SQL type: tinyint)
74 * Note that values will be retrieved from the database as a string.
e501603b
TO
75 */
76 public $allowed_to_login;
c3fc2621 77
e501603b
TO
78 /**
79 * Is this the primary email for this contact and location.
80 *
c1e814c7 81 * @var bool|string
28979d65
CW
82 * (SQL type: tinyint)
83 * Note that values will be retrieved from the database as a string.
e501603b
TO
84 */
85 public $is_primary;
c3fc2621 86
e501603b 87 /**
f41f0342 88 * Class constructor.
e501603b 89 */
c3fc2621 90 public function __construct() {
e501603b
TO
91 $this->__table = 'civicrm_openid';
92 parent::__construct();
93 }
c3fc2621 94
449c4e6b
CW
95 /**
96 * Returns localized title of this entity.
7b66c3b5
AH
97 *
98 * @param bool $plural
99 * Whether to return the plural version of the title.
449c4e6b 100 */
7b66c3b5
AH
101 public static function getEntityTitle($plural = FALSE) {
102 return $plural ? ts('Open IDs') : ts('Open ID');
449c4e6b
CW
103 }
104
e501603b 105 /**
f41f0342 106 * Returns foreign keys and entity references.
e501603b
TO
107 *
108 * @return array
109 * [CRM_Core_Reference_Interface]
110 */
c3fc2621 111 public static function getReferenceColumns() {
346aaaba 112 if (!isset(Civi::$statics[__CLASS__]['links'])) {
fa45b5b9 113 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
c3fc2621 114 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'contact_id', 'civicrm_contact', 'id');
346aaaba 115 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 116 }
346aaaba 117 return Civi::$statics[__CLASS__]['links'];
e501603b 118 }
c3fc2621 119
e501603b
TO
120 /**
121 * Returns all the column names of this table
122 *
123 * @return array
124 */
c3fc2621 125 public static function &fields() {
346aaaba 126 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
127 Civi::$statics[__CLASS__]['fields'] = [
128 'id' => [
e501603b
TO
129 'name' => 'id',
130 'type' => CRM_Utils_Type::T_INT,
c3fc2621 131 'title' => ts('Open ID identifier'),
215b423e 132 'description' => ts('Unique OpenID ID'),
c3fc2621 133 'required' => TRUE,
a36434b9 134 'where' => 'civicrm_openid.id',
522a26c9 135 'table_name' => 'civicrm_openid',
136 'entity' => 'OpenID',
137 'bao' => 'CRM_Core_BAO_OpenID',
6a7e5e5d 138 'localizable' => 0,
2cbbebe8
A
139 'html' => [
140 'type' => 'Number',
141 ],
1fe423d6 142 'readonly' => TRUE,
a9d0587b 143 'add' => '2.0',
c3fc2621
CW
144 ],
145 'contact_id' => [
e501603b
TO
146 'name' => 'contact_id',
147 'type' => CRM_Utils_Type::T_INT,
2cbbebe8 148 'title' => ts('Contact ID'),
215b423e 149 'description' => ts('FK to Contact ID'),
a36434b9 150 'where' => 'civicrm_openid.contact_id',
522a26c9 151 'table_name' => 'civicrm_openid',
152 'entity' => 'OpenID',
153 'bao' => 'CRM_Core_BAO_OpenID',
6a7e5e5d 154 'localizable' => 0,
e501603b 155 'FKClassName' => 'CRM_Contact_DAO_Contact',
2cbbebe8
A
156 'html' => [
157 'label' => ts("Contact"),
158 ],
a9d0587b 159 'add' => '2.0',
c3fc2621
CW
160 ],
161 'location_type_id' => [
e501603b
TO
162 'name' => 'location_type_id',
163 'type' => CRM_Utils_Type::T_INT,
c3fc2621 164 'title' => ts('OpenID Location Type'),
215b423e 165 'description' => ts('Which Location does this email belong to.'),
a36434b9 166 'where' => 'civicrm_openid.location_type_id',
522a26c9 167 'table_name' => 'civicrm_openid',
168 'entity' => 'OpenID',
169 'bao' => 'CRM_Core_BAO_OpenID',
6a7e5e5d 170 'localizable' => 0,
5058d73d
PN
171 'pseudoconstant' => [
172 'table' => 'civicrm_location_type',
173 'keyColumn' => 'id',
174 'labelColumn' => 'display_name',
175 ],
a9d0587b 176 'add' => '2.0',
c3fc2621
CW
177 ],
178 'openid' => [
e501603b
TO
179 'name' => 'openid',
180 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 181 'title' => ts('OpenID'),
215b423e 182 'description' => ts('the OpenID (or OpenID-style http://username.domain/) unique identifier for this contact mainly used for logging in to CiviCRM'),
e501603b
TO
183 'maxlength' => 255,
184 'size' => CRM_Utils_Type::HUGE,
c3fc2621 185 'import' => TRUE,
e501603b
TO
186 'where' => 'civicrm_openid.openid',
187 'headerPattern' => '/^Open.?ID|u(niq\w*)?.?ID/i',
188 'dataPattern' => '/^[\w\/\:\.]+$/',
c3fc2621 189 'export' => TRUE,
e501603b 190 'rule' => 'url',
522a26c9 191 'table_name' => 'civicrm_openid',
192 'entity' => 'OpenID',
193 'bao' => 'CRM_Core_BAO_OpenID',
6a7e5e5d 194 'localizable' => 0,
a9d0587b 195 'add' => '2.0',
c3fc2621
CW
196 ],
197 'allowed_to_login' => [
e501603b
TO
198 'name' => 'allowed_to_login',
199 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 200 'title' => ts('Allowed to login?'),
215b423e 201 'description' => ts('Whether or not this user is allowed to login'),
c3fc2621 202 'required' => TRUE,
a36434b9 203 'where' => 'civicrm_openid.allowed_to_login',
45a83e42 204 'default' => '0',
522a26c9 205 'table_name' => 'civicrm_openid',
206 'entity' => 'OpenID',
207 'bao' => 'CRM_Core_BAO_OpenID',
6a7e5e5d 208 'localizable' => 0,
a9d0587b 209 'add' => '2.0',
c3fc2621
CW
210 ],
211 'is_primary' => [
e501603b
TO
212 'name' => 'is_primary',
213 'type' => CRM_Utils_Type::T_BOOLEAN,
b6673dcd 214 'title' => ts('Primary ID'),
215b423e 215 'description' => ts('Is this the primary email for this contact and location.'),
c1e814c7 216 'required' => TRUE,
a36434b9 217 'where' => 'civicrm_openid.is_primary',
45a83e42 218 'default' => '0',
522a26c9 219 'table_name' => 'civicrm_openid',
220 'entity' => 'OpenID',
221 'bao' => 'CRM_Core_BAO_OpenID',
6a7e5e5d 222 'localizable' => 0,
b6673dcd
CW
223 'html' => [
224 'type' => 'Radio',
225 ],
a9d0587b 226 'add' => '2.0',
c3fc2621
CW
227 ],
228 ];
346aaaba 229 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 230 }
346aaaba 231 return Civi::$statics[__CLASS__]['fields'];
e501603b 232 }
c3fc2621 233
e501603b 234 /**
bd8e0b14 235 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
236 *
237 * @return array
bd8e0b14 238 * Array(string $name => string $uniqueName).
e501603b 239 */
c3fc2621 240 public static function &fieldKeys() {
bd8e0b14
TO
241 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
242 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 243 }
bd8e0b14 244 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 245 }
c3fc2621 246
e501603b
TO
247 /**
248 * Returns the names of this table
249 *
250 * @return string
251 */
c3fc2621 252 public static function getTableName() {
e501603b
TO
253 return self::$_tableName;
254 }
c3fc2621 255
e501603b
TO
256 /**
257 * Returns if this table needs to be logged
258 *
c3fc2621 259 * @return bool
e501603b 260 */
c3fc2621 261 public function getLog() {
e501603b
TO
262 return self::$_log;
263 }
c3fc2621 264
e501603b
TO
265 /**
266 * Returns the list of fields that can be imported
267 *
268 * @param bool $prefix
269 *
270 * @return array
271 */
c3fc2621
CW
272 public static function &import($prefix = FALSE) {
273 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'openid', $prefix, []);
60808919 274 return $r;
e501603b 275 }
c3fc2621 276
e501603b
TO
277 /**
278 * Returns the list of fields that can be exported
279 *
280 * @param bool $prefix
281 *
282 * @return array
283 */
c3fc2621
CW
284 public static function &export($prefix = FALSE) {
285 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'openid', $prefix, []);
60808919 286 return $r;
e501603b 287 }
c3fc2621 288
e7a6b91a
AS
289 /**
290 * Returns the list of indices
c3fc2621
CW
291 *
292 * @param bool $localize
293 *
294 * @return array
e7a6b91a
AS
295 */
296 public static function indices($localize = TRUE) {
c3fc2621
CW
297 $indices = [
298 'index_location_type' => [
e7a6b91a 299 'name' => 'index_location_type',
c3fc2621 300 'field' => [
e7a6b91a 301 0 => 'location_type_id',
c3fc2621
CW
302 ],
303 'localizable' => FALSE,
e7a6b91a 304 'sig' => 'civicrm_openid::0::location_type_id',
c3fc2621
CW
305 ],
306 'UI_openid' => [
e7a6b91a 307 'name' => 'UI_openid',
c3fc2621 308 'field' => [
e7a6b91a 309 0 => 'openid',
c3fc2621
CW
310 ],
311 'localizable' => FALSE,
312 'unique' => TRUE,
e7a6b91a 313 'sig' => 'civicrm_openid::1::openid',
c3fc2621
CW
314 ],
315 ];
e7a6b91a
AS
316 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
317 }
c3fc2621 318
e501603b 319}