Merge pull request #19329 from civicrm/5.33
[civicrm-core.git] / CRM / Core / DAO / StatusPreference.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/StatusPreference.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
d31fb4e3 9 * (GenCodeChecksum:bb2fbd63b6758475161446097d35804c)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the StatusPreference entity.
f41f0342 14 */
e501603b 15class CRM_Core_DAO_StatusPreference extends CRM_Core_DAO {
929a1c14
CW
16 const EXT = 'civicrm';
17 const TABLE_ADDED = '4.7';
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_status_pref';
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 Status Preference ID
35 *
e6ca0a57 36 * @var int
e501603b
TO
37 */
38 public $id;
c3fc2621 39
e501603b
TO
40 /**
41 * Which Domain is this Status Preference for
42 *
e6ca0a57 43 * @var int
e501603b
TO
44 */
45 public $domain_id;
c3fc2621 46
e501603b
TO
47 /**
48 * Name of the status check this preference references.
49 *
50 * @var string
51 */
52 public $name;
c3fc2621 53
e501603b
TO
54 /**
55 * expires ignore_severity. NULL never hushes.
56 *
57 * @var date
58 */
59 public $hush_until;
c3fc2621 60
e501603b
TO
61 /**
62 * Hush messages up to and including this severity.
63 *
e6ca0a57 64 * @var int
e501603b
TO
65 */
66 public $ignore_severity;
c3fc2621 67
e501603b
TO
68 /**
69 * These settings are per-check, and can't be compared across checks.
70 *
71 * @var string
72 */
73 public $prefs;
c3fc2621 74
e501603b
TO
75 /**
76 * These values are per-check, and can't be compared across checks.
77 *
78 * @var string
79 */
80 public $check_info;
c3fc2621 81
ef91b100 82 /**
83 * Is this status check active?
84 *
85 * @var bool
86 */
87 public $is_active;
88
e501603b 89 /**
f41f0342 90 * Class constructor.
e501603b 91 */
c3fc2621 92 public function __construct() {
e501603b
TO
93 $this->__table = 'civicrm_status_pref';
94 parent::__construct();
95 }
c3fc2621 96
449c4e6b
CW
97 /**
98 * Returns localized title of this entity.
7b66c3b5
AH
99 *
100 * @param bool $plural
101 * Whether to return the plural version of the title.
449c4e6b 102 */
7b66c3b5
AH
103 public static function getEntityTitle($plural = FALSE) {
104 return $plural ? ts('Status Preferences') : ts('Status Preference');
449c4e6b
CW
105 }
106
e501603b 107 /**
f41f0342 108 * Returns foreign keys and entity references.
e501603b
TO
109 *
110 * @return array
111 * [CRM_Core_Reference_Interface]
112 */
c3fc2621 113 public static function getReferenceColumns() {
346aaaba 114 if (!isset(Civi::$statics[__CLASS__]['links'])) {
fa45b5b9 115 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
c3fc2621 116 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'domain_id', 'civicrm_domain', 'id');
346aaaba 117 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 118 }
346aaaba 119 return Civi::$statics[__CLASS__]['links'];
e501603b 120 }
c3fc2621 121
e501603b
TO
122 /**
123 * Returns all the column names of this table
124 *
125 * @return array
126 */
c3fc2621 127 public static function &fields() {
346aaaba 128 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
129 Civi::$statics[__CLASS__]['fields'] = [
130 'id' => [
e501603b
TO
131 'name' => 'id',
132 'type' => CRM_Utils_Type::T_INT,
c3fc2621 133 'title' => ts('Status Preference ID'),
215b423e 134 'description' => ts('Unique Status Preference ID'),
c3fc2621 135 'required' => TRUE,
a36434b9 136 'where' => 'civicrm_status_pref.id',
522a26c9 137 'table_name' => 'civicrm_status_pref',
138 'entity' => 'StatusPreference',
139 'bao' => 'CRM_Core_BAO_StatusPreference',
6a7e5e5d 140 'localizable' => 0,
a9d0587b 141 'add' => '4.7',
c3fc2621
CW
142 ],
143 'domain_id' => [
e501603b
TO
144 'name' => 'domain_id',
145 'type' => CRM_Utils_Type::T_INT,
c3fc2621 146 'title' => ts('Setting Domain'),
215b423e 147 'description' => ts('Which Domain is this Status Preference for'),
c3fc2621 148 'required' => TRUE,
a36434b9 149 'where' => 'civicrm_status_pref.domain_id',
522a26c9 150 'table_name' => 'civicrm_status_pref',
151 'entity' => 'StatusPreference',
152 'bao' => 'CRM_Core_BAO_StatusPreference',
6a7e5e5d 153 'localizable' => 0,
e501603b 154 'FKClassName' => 'CRM_Core_DAO_Domain',
c3fc2621 155 'pseudoconstant' => [
e501603b
TO
156 'table' => 'civicrm_domain',
157 'keyColumn' => 'id',
158 'labelColumn' => 'name',
e6ca0a57 159 ],
a9d0587b 160 'add' => '4.7',
c3fc2621
CW
161 ],
162 'name' => [
e501603b
TO
163 'name' => 'name',
164 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 165 'title' => ts('Status Check Name'),
215b423e 166 'description' => ts('Name of the status check this preference references.'),
c3fc2621 167 'required' => TRUE,
e501603b
TO
168 'maxlength' => 255,
169 'size' => CRM_Utils_Type::HUGE,
c3fc2621 170 'import' => TRUE,
e501603b 171 'where' => 'civicrm_status_pref.name',
c3fc2621 172 'export' => TRUE,
522a26c9 173 'table_name' => 'civicrm_status_pref',
174 'entity' => 'StatusPreference',
175 'bao' => 'CRM_Core_BAO_StatusPreference',
6a7e5e5d 176 'localizable' => 0,
a9d0587b 177 'add' => '4.7',
c3fc2621
CW
178 ],
179 'hush_until' => [
e501603b
TO
180 'name' => 'hush_until',
181 'type' => CRM_Utils_Type::T_DATE,
c3fc2621 182 'title' => ts('Snooze Status Notifications Until'),
215b423e 183 'description' => ts('expires ignore_severity. NULL never hushes.'),
c3fc2621 184 'import' => TRUE,
e501603b 185 'where' => 'civicrm_status_pref.hush_until',
c3fc2621 186 'export' => TRUE,
e501603b 187 'default' => 'NULL',
522a26c9 188 'table_name' => 'civicrm_status_pref',
189 'entity' => 'StatusPreference',
190 'bao' => 'CRM_Core_BAO_StatusPreference',
6a7e5e5d 191 'localizable' => 0,
a9d0587b 192 'add' => '4.7',
c3fc2621
CW
193 ],
194 'ignore_severity' => [
e501603b
TO
195 'name' => 'ignore_severity',
196 'type' => CRM_Utils_Type::T_INT,
c3fc2621 197 'title' => ts('Ignore Severity'),
215b423e 198 'description' => ts('Hush messages up to and including this severity.'),
c3fc2621 199 'import' => TRUE,
e501603b 200 'where' => 'civicrm_status_pref.ignore_severity',
c3fc2621 201 'export' => TRUE,
e501603b 202 'default' => '1',
522a26c9 203 'table_name' => 'civicrm_status_pref',
204 'entity' => 'StatusPreference',
205 'bao' => 'CRM_Core_BAO_StatusPreference',
6a7e5e5d 206 'localizable' => 0,
c3fc2621 207 'pseudoconstant' => [
e501603b 208 'callback' => 'CRM_Utils_Check::getSeverityList',
e6ca0a57 209 ],
a9d0587b 210 'add' => '4.7',
c3fc2621
CW
211 ],
212 'prefs' => [
e501603b
TO
213 'name' => 'prefs',
214 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 215 'title' => ts('Status Preferences'),
215b423e 216 'description' => ts('These settings are per-check, and can\'t be compared across checks.'),
e501603b
TO
217 'maxlength' => 255,
218 'size' => CRM_Utils_Type::HUGE,
a36434b9 219 'where' => 'civicrm_status_pref.prefs',
522a26c9 220 'table_name' => 'civicrm_status_pref',
221 'entity' => 'StatusPreference',
222 'bao' => 'CRM_Core_BAO_StatusPreference',
6a7e5e5d 223 'localizable' => 0,
a9d0587b 224 'add' => '4.7',
c3fc2621
CW
225 ],
226 'check_info' => [
e501603b
TO
227 'name' => 'check_info',
228 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 229 'title' => ts('Check Info'),
215b423e 230 'description' => ts('These values are per-check, and can\'t be compared across checks.'),
e501603b
TO
231 'maxlength' => 255,
232 'size' => CRM_Utils_Type::HUGE,
a36434b9 233 'where' => 'civicrm_status_pref.check_info',
522a26c9 234 'table_name' => 'civicrm_status_pref',
235 'entity' => 'StatusPreference',
236 'bao' => 'CRM_Core_BAO_StatusPreference',
ef91b100 237 'localizable' => 0,
a9d0587b 238 'add' => '4.7',
ef91b100 239 ],
240 'is_active' => [
241 'name' => 'is_active',
242 'type' => CRM_Utils_Type::T_BOOLEAN,
243 'title' => ts('Check Is Active'),
244 'description' => ts('Is this status check active?'),
245 'where' => 'civicrm_status_pref.is_active',
246 'default' => '1',
247 'table_name' => 'civicrm_status_pref',
248 'entity' => 'StatusPreference',
249 'bao' => 'CRM_Core_BAO_StatusPreference',
6a7e5e5d 250 'localizable' => 0,
a9d0587b 251 'add' => '5.19',
c3fc2621
CW
252 ],
253 ];
346aaaba 254 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 255 }
346aaaba 256 return Civi::$statics[__CLASS__]['fields'];
e501603b 257 }
c3fc2621 258
e501603b 259 /**
bd8e0b14 260 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
261 *
262 * @return array
bd8e0b14 263 * Array(string $name => string $uniqueName).
e501603b 264 */
c3fc2621 265 public static function &fieldKeys() {
bd8e0b14
TO
266 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
267 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 268 }
bd8e0b14 269 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 270 }
c3fc2621 271
e501603b
TO
272 /**
273 * Returns the names of this table
274 *
275 * @return string
276 */
c3fc2621 277 public static function getTableName() {
e501603b
TO
278 return self::$_tableName;
279 }
c3fc2621 280
e501603b
TO
281 /**
282 * Returns if this table needs to be logged
283 *
c3fc2621 284 * @return bool
e501603b 285 */
c3fc2621 286 public function getLog() {
e501603b
TO
287 return self::$_log;
288 }
c3fc2621 289
e501603b
TO
290 /**
291 * Returns the list of fields that can be imported
292 *
293 * @param bool $prefix
294 *
295 * @return array
296 */
c3fc2621
CW
297 public static function &import($prefix = FALSE) {
298 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'status_pref', $prefix, []);
60808919 299 return $r;
e501603b 300 }
c3fc2621 301
e501603b
TO
302 /**
303 * Returns the list of fields that can be exported
304 *
305 * @param bool $prefix
306 *
307 * @return array
308 */
c3fc2621
CW
309 public static function &export($prefix = FALSE) {
310 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'status_pref', $prefix, []);
60808919 311 return $r;
e501603b 312 }
c3fc2621 313
e7a6b91a
AS
314 /**
315 * Returns the list of indices
c3fc2621
CW
316 *
317 * @param bool $localize
318 *
319 * @return array
e7a6b91a
AS
320 */
321 public static function indices($localize = TRUE) {
c3fc2621
CW
322 $indices = [
323 'UI_status_pref_name' => [
e7a6b91a 324 'name' => 'UI_status_pref_name',
c3fc2621 325 'field' => [
e7a6b91a 326 0 => 'name',
c3fc2621
CW
327 ],
328 'localizable' => FALSE,
e7a6b91a 329 'sig' => 'civicrm_status_pref::0::name',
c3fc2621
CW
330 ],
331 ];
e7a6b91a
AS
332 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
333 }
c3fc2621 334
e501603b 335}