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