DAOs with singular/plural options for entity titles
[civicrm-core.git] / CRM / Contact / DAO / ACLContactCache.php
1 <?php
2
3 /**
4 * @package CRM
5 * @copyright CiviCRM LLC https://civicrm.org/licensing
6 *
7 * Generated from xml/schema/CRM/Contact/ACLContactCache.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
9 * (GenCodeChecksum:ff86d1eed99d09ea6768d93b3cc39973)
10 */
11
12 /**
13 * Database access object for the ACLContactCache entity.
14 */
15 class CRM_Contact_DAO_ACLContactCache extends CRM_Core_DAO {
16 const EXT = 'civicrm';
17 const TABLE_ADDED = '3.1';
18
19 /**
20 * Static instance to hold the table name.
21 *
22 * @var string
23 */
24 public static $_tableName = 'civicrm_acl_contact_cache';
25
26 /**
27 * Should CiviCRM log any modifications to this table in the civicrm_log table.
28 *
29 * @var bool
30 */
31 public static $_log = FALSE;
32
33 /**
34 * primary key
35 *
36 * @var int
37 */
38 public $id;
39
40 /**
41 * FK to civicrm_contact (could be null for anon user)
42 *
43 * @var int
44 */
45 public $user_id;
46
47 /**
48 * FK to civicrm_contact
49 *
50 * @var int
51 */
52 public $contact_id;
53
54 /**
55 * What operation does this user have permission on?
56 *
57 * @var string
58 */
59 public $operation;
60
61 /**
62 * Class constructor.
63 */
64 public function __construct() {
65 $this->__table = 'civicrm_acl_contact_cache';
66 parent::__construct();
67 }
68
69 /**
70 * Returns localized title of this entity.
71 *
72 * @param bool $plural
73 * Whether to return the plural version of the title.
74 */
75 public static function getEntityTitle($plural = FALSE) {
76 return $plural ? ts('ACLContact Caches') : ts('ACLContact Cache');
77 }
78
79 /**
80 * Returns foreign keys and entity references.
81 *
82 * @return array
83 * [CRM_Core_Reference_Interface]
84 */
85 public static function getReferenceColumns() {
86 if (!isset(Civi::$statics[__CLASS__]['links'])) {
87 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
88 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'contact_id', 'civicrm_contact', 'id');
89 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
90 }
91 return Civi::$statics[__CLASS__]['links'];
92 }
93
94 /**
95 * Returns all the column names of this table
96 *
97 * @return array
98 */
99 public static function &fields() {
100 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
101 Civi::$statics[__CLASS__]['fields'] = [
102 'id' => [
103 'name' => 'id',
104 'type' => CRM_Utils_Type::T_INT,
105 'title' => ts('ACL Contact Cache ID'),
106 'description' => ts('primary key'),
107 'required' => TRUE,
108 'where' => 'civicrm_acl_contact_cache.id',
109 'table_name' => 'civicrm_acl_contact_cache',
110 'entity' => 'ACLContactCache',
111 'bao' => 'CRM_Contact_DAO_ACLContactCache',
112 'localizable' => 0,
113 'add' => '3.1',
114 ],
115 'user_id' => [
116 'name' => 'user_id',
117 'type' => CRM_Utils_Type::T_INT,
118 'title' => ts('Contact ID'),
119 'description' => ts('FK to civicrm_contact (could be null for anon user)'),
120 'where' => 'civicrm_acl_contact_cache.user_id',
121 'table_name' => 'civicrm_acl_contact_cache',
122 'entity' => 'ACLContactCache',
123 'bao' => 'CRM_Contact_DAO_ACLContactCache',
124 'localizable' => 0,
125 'add' => '3.1',
126 ],
127 'contact_id' => [
128 'name' => 'contact_id',
129 'type' => CRM_Utils_Type::T_INT,
130 'title' => ts('Contact ID'),
131 'description' => ts('FK to civicrm_contact'),
132 'required' => TRUE,
133 'where' => 'civicrm_acl_contact_cache.contact_id',
134 'table_name' => 'civicrm_acl_contact_cache',
135 'entity' => 'ACLContactCache',
136 'bao' => 'CRM_Contact_DAO_ACLContactCache',
137 'localizable' => 0,
138 'FKClassName' => 'CRM_Contact_DAO_Contact',
139 'add' => '3.1',
140 ],
141 'operation' => [
142 'name' => 'operation',
143 'type' => CRM_Utils_Type::T_STRING,
144 'title' => ts('Operation'),
145 'description' => ts('What operation does this user have permission on?'),
146 'required' => TRUE,
147 'maxlength' => 8,
148 'size' => CRM_Utils_Type::EIGHT,
149 'where' => 'civicrm_acl_contact_cache.operation',
150 'table_name' => 'civicrm_acl_contact_cache',
151 'entity' => 'ACLContactCache',
152 'bao' => 'CRM_Contact_DAO_ACLContactCache',
153 'localizable' => 0,
154 'html' => [
155 'type' => 'Select',
156 ],
157 'pseudoconstant' => [
158 'callback' => 'CRM_ACL_BAO_ACL::operation',
159 ],
160 'add' => '1.6',
161 ],
162 ];
163 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
164 }
165 return Civi::$statics[__CLASS__]['fields'];
166 }
167
168 /**
169 * Return a mapping from field-name to the corresponding key (as used in fields()).
170 *
171 * @return array
172 * Array(string $name => string $uniqueName).
173 */
174 public static function &fieldKeys() {
175 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
176 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
177 }
178 return Civi::$statics[__CLASS__]['fieldKeys'];
179 }
180
181 /**
182 * Returns the names of this table
183 *
184 * @return string
185 */
186 public static function getTableName() {
187 return self::$_tableName;
188 }
189
190 /**
191 * Returns if this table needs to be logged
192 *
193 * @return bool
194 */
195 public function getLog() {
196 return self::$_log;
197 }
198
199 /**
200 * Returns the list of fields that can be imported
201 *
202 * @param bool $prefix
203 *
204 * @return array
205 */
206 public static function &import($prefix = FALSE) {
207 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'acl_contact_cache', $prefix, []);
208 return $r;
209 }
210
211 /**
212 * Returns the list of fields that can be exported
213 *
214 * @param bool $prefix
215 *
216 * @return array
217 */
218 public static function &export($prefix = FALSE) {
219 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'acl_contact_cache', $prefix, []);
220 return $r;
221 }
222
223 /**
224 * Returns the list of indices
225 *
226 * @param bool $localize
227 *
228 * @return array
229 */
230 public static function indices($localize = TRUE) {
231 $indices = [
232 'UI_user_contact_operation' => [
233 'name' => 'UI_user_contact_operation',
234 'field' => [
235 0 => 'user_id',
236 1 => 'contact_id',
237 2 => 'operation',
238 ],
239 'localizable' => FALSE,
240 'unique' => TRUE,
241 'sig' => 'civicrm_acl_contact_cache::1::user_id::contact_id::operation',
242 ],
243 ];
244 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
245 }
246
247 }