commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / CRM / Dedupe / DAO / Exception.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
30 *
31 * Generated from xml/schema/CRM/Dedupe/Exception.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
33 */
34 require_once 'CRM/Core/DAO.php';
35 require_once 'CRM/Utils/Type.php';
36 class CRM_Dedupe_DAO_Exception extends CRM_Core_DAO {
37 /**
38 * static instance to hold the table name
39 *
40 * @var string
41 */
42 static $_tableName = 'civicrm_dedupe_exception';
43 /**
44 * static instance to hold the field values
45 *
46 * @var array
47 */
48 static $_fields = null;
49 /**
50 * static instance to hold the keys used in $_fields for each field.
51 *
52 * @var array
53 */
54 static $_fieldKeys = null;
55 /**
56 * static instance to hold the FK relationships
57 *
58 * @var string
59 */
60 static $_links = null;
61 /**
62 * static instance to hold the values that can
63 * be imported
64 *
65 * @var array
66 */
67 static $_import = null;
68 /**
69 * static instance to hold the values that can
70 * be exported
71 *
72 * @var array
73 */
74 static $_export = null;
75 /**
76 * static value to see if we should log any modifications to
77 * this table in the civicrm_log table
78 *
79 * @var boolean
80 */
81 static $_log = false;
82 /**
83 * Unique dedupe exception id
84 *
85 * @var int unsigned
86 */
87 public $id;
88 /**
89 * FK to Contact ID
90 *
91 * @var int unsigned
92 */
93 public $contact_id1;
94 /**
95 * FK to Contact ID
96 *
97 * @var int unsigned
98 */
99 public $contact_id2;
100 /**
101 * class constructor
102 *
103 * @return civicrm_dedupe_exception
104 */
105 function __construct() {
106 $this->__table = 'civicrm_dedupe_exception';
107 parent::__construct();
108 }
109 /**
110 * Returns foreign keys and entity references
111 *
112 * @return array
113 * [CRM_Core_Reference_Interface]
114 */
115 static function getReferenceColumns() {
116 if (!self::$_links) {
117 self::$_links = static ::createReferenceColumns(__CLASS__);
118 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'contact_id1', 'civicrm_contact', 'id');
119 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'contact_id2', 'civicrm_contact', 'id');
120 }
121 return self::$_links;
122 }
123 /**
124 * Returns all the column names of this table
125 *
126 * @return array
127 */
128 static function &fields() {
129 if (!(self::$_fields)) {
130 self::$_fields = array(
131 'id' => array(
132 'name' => 'id',
133 'type' => CRM_Utils_Type::T_INT,
134 'description' => 'Unique dedupe exception id',
135 'required' => true,
136 ) ,
137 'contact_id1' => array(
138 'name' => 'contact_id1',
139 'type' => CRM_Utils_Type::T_INT,
140 'title' => ts('First Dupe Contact ID') ,
141 'description' => 'FK to Contact ID',
142 'FKClassName' => 'CRM_Contact_DAO_Contact',
143 ) ,
144 'contact_id2' => array(
145 'name' => 'contact_id2',
146 'type' => CRM_Utils_Type::T_INT,
147 'title' => ts('Second Dupe Contact ID') ,
148 'description' => 'FK to Contact ID',
149 'FKClassName' => 'CRM_Contact_DAO_Contact',
150 ) ,
151 );
152 }
153 return self::$_fields;
154 }
155 /**
156 * Returns an array containing, for each field, the arary key used for that
157 * field in self::$_fields.
158 *
159 * @return array
160 */
161 static function &fieldKeys() {
162 if (!(self::$_fieldKeys)) {
163 self::$_fieldKeys = array(
164 'id' => 'id',
165 'contact_id1' => 'contact_id1',
166 'contact_id2' => 'contact_id2',
167 );
168 }
169 return self::$_fieldKeys;
170 }
171 /**
172 * Returns the names of this table
173 *
174 * @return string
175 */
176 static function getTableName() {
177 return self::$_tableName;
178 }
179 /**
180 * Returns if this table needs to be logged
181 *
182 * @return boolean
183 */
184 function getLog() {
185 return self::$_log;
186 }
187 /**
188 * Returns the list of fields that can be imported
189 *
190 * @param bool $prefix
191 *
192 * @return array
193 */
194 static function &import($prefix = false) {
195 if (!(self::$_import)) {
196 self::$_import = array();
197 $fields = self::fields();
198 foreach($fields as $name => $field) {
199 if (CRM_Utils_Array::value('import', $field)) {
200 if ($prefix) {
201 self::$_import['dedupe_exception'] = & $fields[$name];
202 } else {
203 self::$_import[$name] = & $fields[$name];
204 }
205 }
206 }
207 }
208 return self::$_import;
209 }
210 /**
211 * Returns the list of fields that can be exported
212 *
213 * @param bool $prefix
214 *
215 * @return array
216 */
217 static function &export($prefix = false) {
218 if (!(self::$_export)) {
219 self::$_export = array();
220 $fields = self::fields();
221 foreach($fields as $name => $field) {
222 if (CRM_Utils_Array::value('export', $field)) {
223 if ($prefix) {
224 self::$_export['dedupe_exception'] = & $fields[$name];
225 } else {
226 self::$_export[$name] = & $fields[$name];
227 }
228 }
229 }
230 }
231 return self::$_export;
232 }
233 }