Regen DAOs with new fieldKeys()
[civicrm-core.git] / CRM / Dedupe / DAO / Exception.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2016 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27 /**
28 * @package CRM
29 * @copyright CiviCRM LLC (c) 2004-2016
30 *
31 * Generated from xml/schema/CRM/Dedupe/Exception.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
33 * (GenCodeChecksum:dcb340c85bb19050f0ed6c4c46dc8a4f)
34 */
35 require_once 'CRM/Core/DAO.php';
36 require_once 'CRM/Utils/Type.php';
37 class CRM_Dedupe_DAO_Exception extends CRM_Core_DAO {
38 /**
39 * static instance to hold the table name
40 *
41 * @var string
42 */
43 static $_tableName = 'civicrm_dedupe_exception';
44 /**
45 * static instance to hold the field values
46 *
47 * @var array
48 */
49 static $_fields = null;
50 /**
51 * static instance to hold the FK relationships
52 *
53 * @var string
54 */
55 static $_links = null;
56 /**
57 * static value to see if we should log any modifications to
58 * this table in the civicrm_log table
59 *
60 * @var boolean
61 */
62 static $_log = false;
63 /**
64 * Unique dedupe exception id
65 *
66 * @var int unsigned
67 */
68 public $id;
69 /**
70 * FK to Contact ID
71 *
72 * @var int unsigned
73 */
74 public $contact_id1;
75 /**
76 * FK to Contact ID
77 *
78 * @var int unsigned
79 */
80 public $contact_id2;
81 /**
82 * class constructor
83 *
84 * @return civicrm_dedupe_exception
85 */
86 function __construct() {
87 $this->__table = 'civicrm_dedupe_exception';
88 parent::__construct();
89 }
90 /**
91 * Returns foreign keys and entity references
92 *
93 * @return array
94 * [CRM_Core_Reference_Interface]
95 */
96 static function getReferenceColumns() {
97 if (!self::$_links) {
98 self::$_links = static ::createReferenceColumns(__CLASS__);
99 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'contact_id1', 'civicrm_contact', 'id');
100 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'contact_id2', 'civicrm_contact', 'id');
101 }
102 return self::$_links;
103 }
104 /**
105 * Returns all the column names of this table
106 *
107 * @return array
108 */
109 static function &fields() {
110 if (!(self::$_fields)) {
111 self::$_fields = array(
112 'id' => array(
113 'name' => 'id',
114 'type' => CRM_Utils_Type::T_INT,
115 'title' => ts('Dedupe Exception ID') ,
116 'description' => 'Unique dedupe exception id',
117 'required' => true,
118 ) ,
119 'contact_id1' => array(
120 'name' => 'contact_id1',
121 'type' => CRM_Utils_Type::T_INT,
122 'title' => ts('First Dupe Contact ID') ,
123 'description' => 'FK to Contact ID',
124 'FKClassName' => 'CRM_Contact_DAO_Contact',
125 ) ,
126 'contact_id2' => array(
127 'name' => 'contact_id2',
128 'type' => CRM_Utils_Type::T_INT,
129 'title' => ts('Second Dupe Contact ID') ,
130 'description' => 'FK to Contact ID',
131 'FKClassName' => 'CRM_Contact_DAO_Contact',
132 ) ,
133 );
134 }
135 return self::$_fields;
136 }
137 /**
138 * Return a mapping from field-name to the corresponding key (as used in fields()).
139 *
140 * @return array
141 * Array(string $name => string $uniqueName).
142 */
143 static function &fieldKeys() {
144 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
145 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
146 }
147 return Civi::$statics[__CLASS__]['fieldKeys'];
148 }
149 /**
150 * Returns the names of this table
151 *
152 * @return string
153 */
154 static function getTableName() {
155 return self::$_tableName;
156 }
157 /**
158 * Returns if this table needs to be logged
159 *
160 * @return boolean
161 */
162 function getLog() {
163 return self::$_log;
164 }
165 /**
166 * Returns the list of fields that can be imported
167 *
168 * @param bool $prefix
169 *
170 * @return array
171 */
172 static function &import($prefix = false) {
173 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'dedupe_exception', $prefix, array());
174 return $r;
175 }
176 /**
177 * Returns the list of fields that can be exported
178 *
179 * @param bool $prefix
180 *
181 * @return array
182 */
183 static function &export($prefix = false) {
184 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'dedupe_exception', $prefix, array());
185 return $r;
186 }
187 }