Add titles and icons to entities
[civicrm-core.git] / CRM / Dedupe / DAO / Exception.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/Dedupe/Exception.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
449c4e6b 9 * (GenCodeChecksum:ba60ce547a19bb867543b38a84f4654d)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the Exception entity.
f41f0342 14 */
e501603b 15class CRM_Dedupe_DAO_Exception extends CRM_Core_DAO {
c3fc2621 16
e501603b 17 /**
f41f0342 18 * Static instance to hold the table name.
e501603b
TO
19 *
20 * @var string
21 */
fa45b5b9 22 public static $_tableName = 'civicrm_dedupe_exception';
c3fc2621 23
e501603b 24 /**
f41f0342 25 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b 26 *
c3fc2621 27 * @var bool
e501603b 28 */
fa45b5b9 29 public static $_log = FALSE;
c3fc2621 30
e501603b
TO
31 /**
32 * Unique dedupe exception id
33 *
e6ca0a57 34 * @var int
e501603b
TO
35 */
36 public $id;
c3fc2621 37
e501603b
TO
38 /**
39 * FK to Contact ID
40 *
e6ca0a57 41 * @var int
e501603b
TO
42 */
43 public $contact_id1;
c3fc2621 44
e501603b
TO
45 /**
46 * FK to Contact ID
47 *
e6ca0a57 48 * @var int
e501603b
TO
49 */
50 public $contact_id2;
c3fc2621 51
e501603b 52 /**
f41f0342 53 * Class constructor.
e501603b 54 */
c3fc2621 55 public function __construct() {
e501603b
TO
56 $this->__table = 'civicrm_dedupe_exception';
57 parent::__construct();
58 }
c3fc2621 59
449c4e6b
CW
60 /**
61 * Returns localized title of this entity.
62 */
63 public static function getEntityTitle() {
64 return ts('Exceptions');
65 }
66
e501603b 67 /**
f41f0342 68 * Returns foreign keys and entity references.
e501603b
TO
69 *
70 * @return array
71 * [CRM_Core_Reference_Interface]
72 */
c3fc2621 73 public static function getReferenceColumns() {
346aaaba 74 if (!isset(Civi::$statics[__CLASS__]['links'])) {
fa45b5b9 75 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
c3fc2621
CW
76 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'contact_id1', 'civicrm_contact', 'id');
77 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'contact_id2', 'civicrm_contact', 'id');
346aaaba 78 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 79 }
346aaaba 80 return Civi::$statics[__CLASS__]['links'];
e501603b 81 }
c3fc2621 82
e501603b
TO
83 /**
84 * Returns all the column names of this table
85 *
86 * @return array
87 */
c3fc2621 88 public static function &fields() {
346aaaba 89 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
90 Civi::$statics[__CLASS__]['fields'] = [
91 'id' => [
e501603b
TO
92 'name' => 'id',
93 'type' => CRM_Utils_Type::T_INT,
c3fc2621 94 'title' => ts('Dedupe Exception ID'),
215b423e 95 'description' => ts('Unique dedupe exception id'),
c3fc2621 96 'required' => TRUE,
a36434b9 97 'where' => 'civicrm_dedupe_exception.id',
522a26c9 98 'table_name' => 'civicrm_dedupe_exception',
99 'entity' => 'Exception',
0a82440c 100 'bao' => 'CRM_Dedupe_BAO_Exception',
6a7e5e5d 101 'localizable' => 0,
c3fc2621
CW
102 ],
103 'contact_id1' => [
e501603b
TO
104 'name' => 'contact_id1',
105 'type' => CRM_Utils_Type::T_INT,
c3fc2621 106 'title' => ts('First Dupe Contact ID'),
215b423e 107 'description' => ts('FK to Contact ID'),
b23a2a3b 108 'required' => TRUE,
a36434b9 109 'where' => 'civicrm_dedupe_exception.contact_id1',
522a26c9 110 'table_name' => 'civicrm_dedupe_exception',
111 'entity' => 'Exception',
0a82440c 112 'bao' => 'CRM_Dedupe_BAO_Exception',
6a7e5e5d 113 'localizable' => 0,
e501603b 114 'FKClassName' => 'CRM_Contact_DAO_Contact',
c3fc2621
CW
115 ],
116 'contact_id2' => [
e501603b
TO
117 'name' => 'contact_id2',
118 'type' => CRM_Utils_Type::T_INT,
c3fc2621 119 'title' => ts('Second Dupe Contact ID'),
215b423e 120 'description' => ts('FK to Contact ID'),
b23a2a3b 121 'required' => TRUE,
a36434b9 122 'where' => 'civicrm_dedupe_exception.contact_id2',
522a26c9 123 'table_name' => 'civicrm_dedupe_exception',
124 'entity' => 'Exception',
0a82440c 125 'bao' => 'CRM_Dedupe_BAO_Exception',
6a7e5e5d 126 'localizable' => 0,
e501603b 127 'FKClassName' => 'CRM_Contact_DAO_Contact',
c3fc2621
CW
128 ],
129 ];
346aaaba 130 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 131 }
346aaaba 132 return Civi::$statics[__CLASS__]['fields'];
e501603b 133 }
c3fc2621 134
e501603b 135 /**
bd8e0b14 136 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
137 *
138 * @return array
bd8e0b14 139 * Array(string $name => string $uniqueName).
e501603b 140 */
c3fc2621 141 public static function &fieldKeys() {
bd8e0b14
TO
142 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
143 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 144 }
bd8e0b14 145 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 146 }
c3fc2621 147
e501603b
TO
148 /**
149 * Returns the names of this table
150 *
151 * @return string
152 */
c3fc2621 153 public static function getTableName() {
e501603b
TO
154 return self::$_tableName;
155 }
c3fc2621 156
e501603b
TO
157 /**
158 * Returns if this table needs to be logged
159 *
c3fc2621 160 * @return bool
e501603b 161 */
c3fc2621 162 public function getLog() {
e501603b
TO
163 return self::$_log;
164 }
c3fc2621 165
e501603b
TO
166 /**
167 * Returns the list of fields that can be imported
168 *
169 * @param bool $prefix
170 *
171 * @return array
172 */
c3fc2621
CW
173 public static function &import($prefix = FALSE) {
174 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'dedupe_exception', $prefix, []);
60808919 175 return $r;
e501603b 176 }
c3fc2621 177
e501603b
TO
178 /**
179 * Returns the list of fields that can be exported
180 *
181 * @param bool $prefix
182 *
183 * @return array
184 */
c3fc2621
CW
185 public static function &export($prefix = FALSE) {
186 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'dedupe_exception', $prefix, []);
60808919 187 return $r;
e501603b 188 }
c3fc2621 189
e7a6b91a
AS
190 /**
191 * Returns the list of indices
c3fc2621
CW
192 *
193 * @param bool $localize
194 *
195 * @return array
e7a6b91a
AS
196 */
197 public static function indices($localize = TRUE) {
c3fc2621
CW
198 $indices = [
199 'UI_contact_id1_contact_id2' => [
e7a6b91a 200 'name' => 'UI_contact_id1_contact_id2',
c3fc2621 201 'field' => [
e7a6b91a
AS
202 0 => 'contact_id1',
203 1 => 'contact_id2',
c3fc2621
CW
204 ],
205 'localizable' => FALSE,
206 'unique' => TRUE,
e7a6b91a 207 'sig' => 'civicrm_dedupe_exception::1::contact_id1::contact_id2',
c3fc2621
CW
208 ],
209 ];
e7a6b91a
AS
210 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
211 }
c3fc2621 212
e501603b 213}