DAOs with singular/plural options for entity titles
[civicrm-core.git] / CRM / Core / DAO / EntityTag.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/Core/EntityTag.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
7b66c3b5 9 * (GenCodeChecksum:82e27d87178a408cd0a1c201f3501dd2)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the EntityTag entity.
f41f0342 14 */
e501603b 15class CRM_Core_DAO_EntityTag extends CRM_Core_DAO {
929a1c14
CW
16 const EXT = 'civicrm';
17 const TABLE_ADDED = '1.1';
c3fc2621 18
e501603b 19 /**
f41f0342 20 * Static instance to hold the table name.
e501603b
TO
21 *
22 * @var string
23 */
fa45b5b9 24 public static $_tableName = 'civicrm_entity_tag';
c3fc2621 25
e501603b 26 /**
f41f0342 27 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b 28 *
c3fc2621 29 * @var bool
e501603b 30 */
fa45b5b9 31 public static $_log = TRUE;
c3fc2621 32
e501603b
TO
33 /**
34 * primary key
35 *
e6ca0a57 36 * @var int
e501603b
TO
37 */
38 public $id;
c3fc2621 39
e501603b
TO
40 /**
41 * physical tablename for entity being joined to file, e.g. civicrm_contact
42 *
43 * @var string
44 */
45 public $entity_table;
c3fc2621 46
e501603b
TO
47 /**
48 * FK to entity table specified in entity_table column.
49 *
e6ca0a57 50 * @var int
e501603b
TO
51 */
52 public $entity_id;
c3fc2621 53
e501603b
TO
54 /**
55 * FK to civicrm_tag
56 *
e6ca0a57 57 * @var int
e501603b
TO
58 */
59 public $tag_id;
c3fc2621 60
e501603b 61 /**
f41f0342 62 * Class constructor.
e501603b 63 */
c3fc2621 64 public function __construct() {
e501603b
TO
65 $this->__table = 'civicrm_entity_tag';
66 parent::__construct();
67 }
c3fc2621 68
449c4e6b
CW
69 /**
70 * Returns localized title of this entity.
7b66c3b5
AH
71 *
72 * @param bool $plural
73 * Whether to return the plural version of the title.
449c4e6b 74 */
7b66c3b5
AH
75 public static function getEntityTitle($plural = FALSE) {
76 return $plural ? ts('Entity Tags') : ts('Entity Tag');
449c4e6b
CW
77 }
78
e501603b 79 /**
f41f0342 80 * Returns foreign keys and entity references.
e501603b
TO
81 *
82 * @return array
83 * [CRM_Core_Reference_Interface]
84 */
c3fc2621 85 public static function getReferenceColumns() {
346aaaba 86 if (!isset(Civi::$statics[__CLASS__]['links'])) {
fa45b5b9 87 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
c3fc2621
CW
88 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'tag_id', 'civicrm_tag', 'id');
89 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Dynamic(self::getTableName(), 'entity_id', NULL, 'id', 'entity_table');
346aaaba 90 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 91 }
346aaaba 92 return Civi::$statics[__CLASS__]['links'];
e501603b 93 }
c3fc2621 94
e501603b
TO
95 /**
96 * Returns all the column names of this table
97 *
98 * @return array
99 */
c3fc2621 100 public static function &fields() {
346aaaba 101 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
102 Civi::$statics[__CLASS__]['fields'] = [
103 'id' => [
e501603b
TO
104 'name' => 'id',
105 'type' => CRM_Utils_Type::T_INT,
c3fc2621 106 'title' => ts('Entity Tag ID'),
215b423e 107 'description' => ts('primary key'),
c3fc2621 108 'required' => TRUE,
a36434b9 109 'where' => 'civicrm_entity_tag.id',
522a26c9 110 'table_name' => 'civicrm_entity_tag',
111 'entity' => 'EntityTag',
112 'bao' => 'CRM_Core_BAO_EntityTag',
6a7e5e5d 113 'localizable' => 0,
a9d0587b 114 'add' => '1.1',
c3fc2621
CW
115 ],
116 'entity_table' => [
e501603b
TO
117 'name' => 'entity_table',
118 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 119 'title' => ts('Entity Table'),
215b423e 120 'description' => ts('physical tablename for entity being joined to file, e.g. civicrm_contact'),
e501603b
TO
121 'maxlength' => 64,
122 'size' => CRM_Utils_Type::BIG,
a36434b9 123 'where' => 'civicrm_entity_tag.entity_table',
522a26c9 124 'table_name' => 'civicrm_entity_tag',
125 'entity' => 'EntityTag',
126 'bao' => 'CRM_Core_BAO_EntityTag',
6a7e5e5d 127 'localizable' => 0,
c3fc2621 128 'pseudoconstant' => [
e501603b
TO
129 'optionGroupName' => 'tag_used_for',
130 'optionEditPath' => 'civicrm/admin/options/tag_used_for',
e6ca0a57 131 ],
a9d0587b 132 'add' => '3.2',
c3fc2621
CW
133 ],
134 'entity_id' => [
e501603b
TO
135 'name' => 'entity_id',
136 'type' => CRM_Utils_Type::T_INT,
c3fc2621 137 'title' => ts('Entity ID'),
215b423e 138 'description' => ts('FK to entity table specified in entity_table column.'),
c3fc2621 139 'required' => TRUE,
a36434b9 140 'where' => 'civicrm_entity_tag.entity_id',
522a26c9 141 'table_name' => 'civicrm_entity_tag',
142 'entity' => 'EntityTag',
143 'bao' => 'CRM_Core_BAO_EntityTag',
6a7e5e5d 144 'localizable' => 0,
a9d0587b 145 'add' => '3.2',
c3fc2621
CW
146 ],
147 'tag_id' => [
e501603b
TO
148 'name' => 'tag_id',
149 'type' => CRM_Utils_Type::T_INT,
c3fc2621 150 'title' => ts('Tag'),
215b423e 151 'description' => ts('FK to civicrm_tag'),
c3fc2621 152 'required' => TRUE,
a36434b9 153 'where' => 'civicrm_entity_tag.tag_id',
522a26c9 154 'table_name' => 'civicrm_entity_tag',
155 'entity' => 'EntityTag',
156 'bao' => 'CRM_Core_BAO_EntityTag',
6a7e5e5d 157 'localizable' => 0,
e501603b 158 'FKClassName' => 'CRM_Core_DAO_Tag',
c3fc2621 159 'html' => [
e501603b 160 'type' => 'Select',
c3fc2621
CW
161 ],
162 'pseudoconstant' => [
e501603b
TO
163 'table' => 'civicrm_tag',
164 'keyColumn' => 'id',
165 'labelColumn' => 'name',
e6ca0a57 166 ],
a9d0587b 167 'add' => '1.1',
c3fc2621
CW
168 ],
169 ];
346aaaba 170 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 171 }
346aaaba 172 return Civi::$statics[__CLASS__]['fields'];
e501603b 173 }
c3fc2621 174
e501603b 175 /**
bd8e0b14 176 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
177 *
178 * @return array
bd8e0b14 179 * Array(string $name => string $uniqueName).
e501603b 180 */
c3fc2621 181 public static function &fieldKeys() {
bd8e0b14
TO
182 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
183 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 184 }
bd8e0b14 185 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 186 }
c3fc2621 187
e501603b
TO
188 /**
189 * Returns the names of this table
190 *
191 * @return string
192 */
c3fc2621 193 public static function getTableName() {
e501603b
TO
194 return self::$_tableName;
195 }
c3fc2621 196
e501603b
TO
197 /**
198 * Returns if this table needs to be logged
199 *
c3fc2621 200 * @return bool
e501603b 201 */
c3fc2621 202 public function getLog() {
e501603b
TO
203 return self::$_log;
204 }
c3fc2621 205
e501603b
TO
206 /**
207 * Returns the list of fields that can be imported
208 *
209 * @param bool $prefix
210 *
211 * @return array
212 */
c3fc2621
CW
213 public static function &import($prefix = FALSE) {
214 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'entity_tag', $prefix, []);
60808919 215 return $r;
e501603b 216 }
c3fc2621 217
e501603b
TO
218 /**
219 * Returns the list of fields that can be exported
220 *
221 * @param bool $prefix
222 *
223 * @return array
224 */
c3fc2621
CW
225 public static function &export($prefix = FALSE) {
226 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'entity_tag', $prefix, []);
60808919 227 return $r;
e501603b 228 }
c3fc2621 229
e7a6b91a
AS
230 /**
231 * Returns the list of indices
c3fc2621
CW
232 *
233 * @param bool $localize
234 *
235 * @return array
e7a6b91a
AS
236 */
237 public static function indices($localize = TRUE) {
c3fc2621
CW
238 $indices = [
239 'UI_entity_id_entity_table_tag_id' => [
e7a6b91a 240 'name' => 'UI_entity_id_entity_table_tag_id',
c3fc2621 241 'field' => [
e7a6b91a
AS
242 0 => 'entity_id',
243 1 => 'entity_table',
244 2 => 'tag_id',
c3fc2621
CW
245 ],
246 'localizable' => FALSE,
247 'unique' => TRUE,
e7a6b91a 248 'sig' => 'civicrm_entity_tag::1::entity_id::entity_table::tag_id',
c3fc2621
CW
249 ],
250 ];
e7a6b91a
AS
251 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
252 }
c3fc2621 253
e501603b 254}