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