Add titles and icons to entities
[civicrm-core.git] / CRM / Case / DAO / CaseActivity.php
1 <?php
2
3 /**
4 * @package CRM
5 * @copyright CiviCRM LLC https://civicrm.org/licensing
6 *
7 * Generated from xml/schema/CRM/Case/CaseActivity.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
9 * (GenCodeChecksum:51e6c7e07af84da07b90145b2dd8c0df)
10 */
11
12 /**
13 * Database access object for the CaseActivity entity.
14 */
15 class CRM_Case_DAO_CaseActivity extends CRM_Core_DAO {
16
17 /**
18 * Static instance to hold the table name.
19 *
20 * @var string
21 */
22 public static $_tableName = 'civicrm_case_activity';
23
24 /**
25 * Should CiviCRM log any modifications to this table in the civicrm_log table.
26 *
27 * @var bool
28 */
29 public static $_log = TRUE;
30
31 /**
32 * Unique case-activity association id
33 *
34 * @var int
35 */
36 public $id;
37
38 /**
39 * Case ID of case-activity association.
40 *
41 * @var int
42 */
43 public $case_id;
44
45 /**
46 * Activity ID of case-activity association.
47 *
48 * @var int
49 */
50 public $activity_id;
51
52 /**
53 * Class constructor.
54 */
55 public function __construct() {
56 $this->__table = 'civicrm_case_activity';
57 parent::__construct();
58 }
59
60 /**
61 * Returns localized title of this entity.
62 */
63 public static function getEntityTitle() {
64 return ts('Case Activities');
65 }
66
67 /**
68 * Returns foreign keys and entity references.
69 *
70 * @return array
71 * [CRM_Core_Reference_Interface]
72 */
73 public static function getReferenceColumns() {
74 if (!isset(Civi::$statics[__CLASS__]['links'])) {
75 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
76 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'case_id', 'civicrm_case', 'id');
77 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'activity_id', 'civicrm_activity', 'id');
78 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
79 }
80 return Civi::$statics[__CLASS__]['links'];
81 }
82
83 /**
84 * Returns all the column names of this table
85 *
86 * @return array
87 */
88 public static function &fields() {
89 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
90 Civi::$statics[__CLASS__]['fields'] = [
91 'id' => [
92 'name' => 'id',
93 'type' => CRM_Utils_Type::T_INT,
94 'title' => ts('Case Activity ID'),
95 'description' => ts('Unique case-activity association id'),
96 'required' => TRUE,
97 'where' => 'civicrm_case_activity.id',
98 'table_name' => 'civicrm_case_activity',
99 'entity' => 'CaseActivity',
100 'bao' => 'CRM_Case_DAO_CaseActivity',
101 'localizable' => 0,
102 ],
103 'case_id' => [
104 'name' => 'case_id',
105 'type' => CRM_Utils_Type::T_INT,
106 'title' => ts('Case'),
107 'description' => ts('Case ID of case-activity association.'),
108 'required' => TRUE,
109 'where' => 'civicrm_case_activity.case_id',
110 'table_name' => 'civicrm_case_activity',
111 'entity' => 'CaseActivity',
112 'bao' => 'CRM_Case_DAO_CaseActivity',
113 'localizable' => 0,
114 'FKClassName' => 'CRM_Case_DAO_Case',
115 ],
116 'activity_id' => [
117 'name' => 'activity_id',
118 'type' => CRM_Utils_Type::T_INT,
119 'title' => ts('Activity ID'),
120 'description' => ts('Activity ID of case-activity association.'),
121 'required' => TRUE,
122 'where' => 'civicrm_case_activity.activity_id',
123 'table_name' => 'civicrm_case_activity',
124 'entity' => 'CaseActivity',
125 'bao' => 'CRM_Case_DAO_CaseActivity',
126 'localizable' => 0,
127 'FKClassName' => 'CRM_Activity_DAO_Activity',
128 ],
129 ];
130 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
131 }
132 return Civi::$statics[__CLASS__]['fields'];
133 }
134
135 /**
136 * Return a mapping from field-name to the corresponding key (as used in fields()).
137 *
138 * @return array
139 * Array(string $name => string $uniqueName).
140 */
141 public static function &fieldKeys() {
142 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
143 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
144 }
145 return Civi::$statics[__CLASS__]['fieldKeys'];
146 }
147
148 /**
149 * Returns the names of this table
150 *
151 * @return string
152 */
153 public static function getTableName() {
154 return self::$_tableName;
155 }
156
157 /**
158 * Returns if this table needs to be logged
159 *
160 * @return bool
161 */
162 public function getLog() {
163 return self::$_log;
164 }
165
166 /**
167 * Returns the list of fields that can be imported
168 *
169 * @param bool $prefix
170 *
171 * @return array
172 */
173 public static function &import($prefix = FALSE) {
174 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'case_activity', $prefix, []);
175 return $r;
176 }
177
178 /**
179 * Returns the list of fields that can be exported
180 *
181 * @param bool $prefix
182 *
183 * @return array
184 */
185 public static function &export($prefix = FALSE) {
186 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'case_activity', $prefix, []);
187 return $r;
188 }
189
190 /**
191 * Returns the list of indices
192 *
193 * @param bool $localize
194 *
195 * @return array
196 */
197 public static function indices($localize = TRUE) {
198 $indices = [
199 'UI_case_activity_id' => [
200 'name' => 'UI_case_activity_id',
201 'field' => [
202 0 => 'case_id',
203 1 => 'activity_id',
204 ],
205 'localizable' => FALSE,
206 'sig' => 'civicrm_case_activity::0::case_id::activity_id',
207 ],
208 ];
209 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
210 }
211
212 }