fixup CRM-14885 - Import DAOs
[civicrm-core.git] / CRM / Contact / DAO / ACLContactCache.php
CommitLineData
e501603b
TO
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/Contact/ACLContactCache.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
437fafcf 33 * (GenCodeChecksum:1fa52b3d989e373155239835b96a8191)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
37class CRM_Contact_DAO_ACLContactCache extends CRM_Core_DAO {
38 /**
39 * static instance to hold the table name
40 *
41 * @var string
42 */
43 static $_tableName = 'civicrm_acl_contact_cache';
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 keys used in $_fields for each field.
52 *
53 * @var array
54 */
55 static $_fieldKeys = null;
56 /**
57 * static instance to hold the FK relationships
58 *
59 * @var string
60 */
61 static $_links = null;
62 /**
63 * static instance to hold the values that can
64 * be imported
65 *
66 * @var array
67 */
68 static $_import = null;
69 /**
70 * static instance to hold the values that can
71 * be exported
72 *
73 * @var array
74 */
75 static $_export = null;
76 /**
77 * static value to see if we should log any modifications to
78 * this table in the civicrm_log table
79 *
80 * @var boolean
81 */
82 static $_log = false;
83 /**
84 * primary key
85 *
86 * @var int unsigned
87 */
88 public $id;
89 /**
90 * FK to civicrm_contact (could be null for anon user)
91 *
92 * @var int unsigned
93 */
94 public $user_id;
95 /**
96 * FK to civicrm_contact
97 *
98 * @var int unsigned
99 */
100 public $contact_id;
101 /**
102 * What operation does this user have permission on?
103 *
104 * @var string
105 */
106 public $operation;
107 /**
108 * class constructor
109 *
110 * @return civicrm_acl_contact_cache
111 */
112 function __construct() {
113 $this->__table = 'civicrm_acl_contact_cache';
114 parent::__construct();
115 }
116 /**
117 * Returns foreign keys and entity references
118 *
119 * @return array
120 * [CRM_Core_Reference_Interface]
121 */
122 static function getReferenceColumns() {
123 if (!self::$_links) {
124 self::$_links = static ::createReferenceColumns(__CLASS__);
125 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'user_id', 'civicrm_contact', 'id');
126 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'contact_id', 'civicrm_contact', 'id');
127 }
128 return self::$_links;
129 }
130 /**
131 * Returns all the column names of this table
132 *
133 * @return array
134 */
135 static function &fields() {
136 if (!(self::$_fields)) {
137 self::$_fields = array(
138 'id' => array(
139 'name' => 'id',
140 'type' => CRM_Utils_Type::T_INT,
141 'title' => ts('ACL Contact Cache ID') ,
142 'description' => 'primary key',
143 'required' => true,
144 ) ,
145 'user_id' => array(
146 'name' => 'user_id',
147 'type' => CRM_Utils_Type::T_INT,
148 'title' => ts('Contact ID') ,
149 'description' => 'FK to civicrm_contact (could be null for anon user)',
150 'FKClassName' => 'CRM_Contact_DAO_Contact',
151 ) ,
152 'contact_id' => array(
153 'name' => 'contact_id',
154 'type' => CRM_Utils_Type::T_INT,
155 'title' => ts('Contact ID') ,
156 'description' => 'FK to civicrm_contact',
157 'required' => true,
158 'FKClassName' => 'CRM_Contact_DAO_Contact',
159 ) ,
160 'operation' => array(
161 'name' => 'operation',
162 'type' => CRM_Utils_Type::T_STRING,
163 'title' => ts('Operation') ,
164 'description' => 'What operation does this user have permission on?',
165 'required' => true,
166 'maxlength' => 8,
167 'size' => CRM_Utils_Type::EIGHT,
168 'html' => array(
169 'type' => 'Select',
170 ) ,
171 'pseudoconstant' => array(
172 'callback' => 'CRM_ACL_BAO_ACL::operation',
173 )
174 ) ,
175 );
176 }
177 return self::$_fields;
178 }
179 /**
180 * Returns an array containing, for each field, the arary key used for that
181 * field in self::$_fields.
182 *
183 * @return array
184 */
185 static function &fieldKeys() {
186 if (!(self::$_fieldKeys)) {
187 self::$_fieldKeys = array(
188 'id' => 'id',
189 'user_id' => 'user_id',
190 'contact_id' => 'contact_id',
191 'operation' => 'operation',
192 );
193 }
194 return self::$_fieldKeys;
195 }
196 /**
197 * Returns the names of this table
198 *
199 * @return string
200 */
201 static function getTableName() {
202 return self::$_tableName;
203 }
204 /**
205 * Returns if this table needs to be logged
206 *
207 * @return boolean
208 */
209 function getLog() {
210 return self::$_log;
211 }
212 /**
213 * Returns the list of fields that can be imported
214 *
215 * @param bool $prefix
216 *
217 * @return array
218 */
219 static function &import($prefix = false) {
220 if (!(self::$_import)) {
221 self::$_import = array();
222 $fields = self::fields();
223 foreach($fields as $name => $field) {
224 if (CRM_Utils_Array::value('import', $field)) {
225 if ($prefix) {
226 self::$_import['acl_contact_cache'] = & $fields[$name];
227 } else {
228 self::$_import[$name] = & $fields[$name];
229 }
230 }
231 }
232 }
233 return self::$_import;
234 }
235 /**
236 * Returns the list of fields that can be exported
237 *
238 * @param bool $prefix
239 *
240 * @return array
241 */
242 static function &export($prefix = false) {
243 if (!(self::$_export)) {
244 self::$_export = array();
245 $fields = self::fields();
246 foreach($fields as $name => $field) {
247 if (CRM_Utils_Array::value('export', $field)) {
248 if ($prefix) {
249 self::$_export['acl_contact_cache'] = & $fields[$name];
250 } else {
251 self::$_export[$name] = & $fields[$name];
252 }
253 }
254 }
255 }
256 return self::$_export;
257 }
258}