(NFC) Regenerate DAO Checksums after changes to codegen
[civicrm-core.git] / CRM / Dedupe / DAO / Exception.php
... / ...
CommitLineData
1<?php
2
3/**
4 * @package CRM
5 * @copyright CiviCRM LLC (c) 2004-2018
6 *
7 * Generated from xml/schema/CRM/Dedupe/Exception.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
9 * (GenCodeChecksum:8be54351020230bbff872ebf033c811b)
10 */
11
12/**
13 * Database access object for the Exception entity.
14 */
15class CRM_Dedupe_DAO_Exception extends CRM_Core_DAO {
16
17 /**
18 * Static instance to hold the table name.
19 *
20 * @var string
21 */
22 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 static $_log = FALSE;
30
31 /**
32 * Unique dedupe exception id
33 *
34 * @var int unsigned
35 */
36 public $id;
37
38 /**
39 * FK to Contact ID
40 *
41 * @var int unsigned
42 */
43 public $contact_id1;
44
45 /**
46 * FK to Contact ID
47 *
48 * @var int unsigned
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 'table_name' => 'civicrm_dedupe_exception',
91 'entity' => 'Exception',
92 'bao' => 'CRM_Dedupe_DAO_Exception',
93 'localizable' => 0,
94 ],
95 'contact_id1' => [
96 'name' => 'contact_id1',
97 'type' => CRM_Utils_Type::T_INT,
98 'title' => ts('First Dupe Contact ID'),
99 'description' => ts('FK to Contact ID'),
100 'table_name' => 'civicrm_dedupe_exception',
101 'entity' => 'Exception',
102 'bao' => 'CRM_Dedupe_DAO_Exception',
103 'localizable' => 0,
104 'FKClassName' => 'CRM_Contact_DAO_Contact',
105 ],
106 'contact_id2' => [
107 'name' => 'contact_id2',
108 'type' => CRM_Utils_Type::T_INT,
109 'title' => ts('Second Dupe Contact ID'),
110 'description' => ts('FK to Contact ID'),
111 'table_name' => 'civicrm_dedupe_exception',
112 'entity' => 'Exception',
113 'bao' => 'CRM_Dedupe_DAO_Exception',
114 'localizable' => 0,
115 'FKClassName' => 'CRM_Contact_DAO_Contact',
116 ],
117 ];
118 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
119 }
120 return Civi::$statics[__CLASS__]['fields'];
121 }
122
123 /**
124 * Return a mapping from field-name to the corresponding key (as used in fields()).
125 *
126 * @return array
127 * Array(string $name => string $uniqueName).
128 */
129 public static function &fieldKeys() {
130 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
131 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
132 }
133 return Civi::$statics[__CLASS__]['fieldKeys'];
134 }
135
136 /**
137 * Returns the names of this table
138 *
139 * @return string
140 */
141 public static function getTableName() {
142 return self::$_tableName;
143 }
144
145 /**
146 * Returns if this table needs to be logged
147 *
148 * @return bool
149 */
150 public function getLog() {
151 return self::$_log;
152 }
153
154 /**
155 * Returns the list of fields that can be imported
156 *
157 * @param bool $prefix
158 *
159 * @return array
160 */
161 public static function &import($prefix = FALSE) {
162 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'dedupe_exception', $prefix, []);
163 return $r;
164 }
165
166 /**
167 * Returns the list of fields that can be exported
168 *
169 * @param bool $prefix
170 *
171 * @return array
172 */
173 public static function &export($prefix = FALSE) {
174 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'dedupe_exception', $prefix, []);
175 return $r;
176 }
177
178 /**
179 * Returns the list of indices
180 *
181 * @param bool $localize
182 *
183 * @return array
184 */
185 public static function indices($localize = TRUE) {
186 $indices = [
187 'UI_contact_id1_contact_id2' => [
188 'name' => 'UI_contact_id1_contact_id2',
189 'field' => [
190 0 => 'contact_id1',
191 1 => 'contact_id2',
192 ],
193 'localizable' => FALSE,
194 'unique' => TRUE,
195 'sig' => 'civicrm_dedupe_exception::1::contact_id1::contact_id2',
196 ],
197 ];
198 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
199 }
200
201}