Merge pull request #22548 from eileenmcnaughton/raw
[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:473d4047af6f44f1082795d38ef3ff4d)
10 */
11
12 /**
13 * Database access object for the CaseActivity entity.
14 */
15 class CRM_Case_DAO_CaseActivity extends CRM_Core_DAO {
16 const EXT = 'civicrm';
17 const TABLE_ADDED = '1.8';
18 const COMPONENT = 'CiviCase';
19
20 /**
21 * Static instance to hold the table name.
22 *
23 * @var string
24 */
25 public static $_tableName = 'civicrm_case_activity';
26
27 /**
28 * Should CiviCRM log any modifications to this table in the civicrm_log table.
29 *
30 * @var bool
31 */
32 public static $_log = TRUE;
33
34 /**
35 * Unique case-activity association id
36 *
37 * @var int|string|null
38 * (SQL type: int unsigned)
39 * Note that values will be retrieved from the database as a string.
40 */
41 public $id;
42
43 /**
44 * Case ID of case-activity association.
45 *
46 * @var int|string
47 * (SQL type: int unsigned)
48 * Note that values will be retrieved from the database as a string.
49 */
50 public $case_id;
51
52 /**
53 * Activity ID of case-activity association.
54 *
55 * @var int|string
56 * (SQL type: int unsigned)
57 * Note that values will be retrieved from the database as a string.
58 */
59 public $activity_id;
60
61 /**
62 * Class constructor.
63 */
64 public function __construct() {
65 $this->__table = 'civicrm_case_activity';
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('Case Activities') : ts('Case Activity');
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(), 'case_id', 'civicrm_case', 'id');
89 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'activity_id', 'civicrm_activity', 'id');
90 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
91 }
92 return Civi::$statics[__CLASS__]['links'];
93 }
94
95 /**
96 * Returns all the column names of this table
97 *
98 * @return array
99 */
100 public static function &fields() {
101 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
102 Civi::$statics[__CLASS__]['fields'] = [
103 'id' => [
104 'name' => 'id',
105 'type' => CRM_Utils_Type::T_INT,
106 'title' => ts('Case Activity ID'),
107 'description' => ts('Unique case-activity association id'),
108 'required' => TRUE,
109 'where' => 'civicrm_case_activity.id',
110 'table_name' => 'civicrm_case_activity',
111 'entity' => 'CaseActivity',
112 'bao' => 'CRM_Case_DAO_CaseActivity',
113 'localizable' => 0,
114 'html' => [
115 'type' => 'Number',
116 ],
117 'readonly' => TRUE,
118 'add' => '1.8',
119 ],
120 'case_id' => [
121 'name' => 'case_id',
122 'type' => CRM_Utils_Type::T_INT,
123 'title' => ts('Case ID'),
124 'description' => ts('Case ID of case-activity association.'),
125 'required' => TRUE,
126 'where' => 'civicrm_case_activity.case_id',
127 'table_name' => 'civicrm_case_activity',
128 'entity' => 'CaseActivity',
129 'bao' => 'CRM_Case_DAO_CaseActivity',
130 'localizable' => 0,
131 'FKClassName' => 'CRM_Case_DAO_Case',
132 'html' => [
133 'label' => ts("Case"),
134 ],
135 'add' => '1.8',
136 ],
137 'activity_id' => [
138 'name' => 'activity_id',
139 'type' => CRM_Utils_Type::T_INT,
140 'title' => ts('Activity ID'),
141 'description' => ts('Activity ID of case-activity association.'),
142 'required' => TRUE,
143 'where' => 'civicrm_case_activity.activity_id',
144 'table_name' => 'civicrm_case_activity',
145 'entity' => 'CaseActivity',
146 'bao' => 'CRM_Case_DAO_CaseActivity',
147 'localizable' => 0,
148 'FKClassName' => 'CRM_Activity_DAO_Activity',
149 'html' => [
150 'label' => ts("Activity"),
151 ],
152 'add' => '2.0',
153 ],
154 ];
155 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
156 }
157 return Civi::$statics[__CLASS__]['fields'];
158 }
159
160 /**
161 * Return a mapping from field-name to the corresponding key (as used in fields()).
162 *
163 * @return array
164 * Array(string $name => string $uniqueName).
165 */
166 public static function &fieldKeys() {
167 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
168 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
169 }
170 return Civi::$statics[__CLASS__]['fieldKeys'];
171 }
172
173 /**
174 * Returns the names of this table
175 *
176 * @return string
177 */
178 public static function getTableName() {
179 return self::$_tableName;
180 }
181
182 /**
183 * Returns if this table needs to be logged
184 *
185 * @return bool
186 */
187 public function getLog() {
188 return self::$_log;
189 }
190
191 /**
192 * Returns the list of fields that can be imported
193 *
194 * @param bool $prefix
195 *
196 * @return array
197 */
198 public static function &import($prefix = FALSE) {
199 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'case_activity', $prefix, []);
200 return $r;
201 }
202
203 /**
204 * Returns the list of fields that can be exported
205 *
206 * @param bool $prefix
207 *
208 * @return array
209 */
210 public static function &export($prefix = FALSE) {
211 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'case_activity', $prefix, []);
212 return $r;
213 }
214
215 /**
216 * Returns the list of indices
217 *
218 * @param bool $localize
219 *
220 * @return array
221 */
222 public static function indices($localize = TRUE) {
223 $indices = [
224 'UI_case_activity_id' => [
225 'name' => 'UI_case_activity_id',
226 'field' => [
227 0 => 'case_id',
228 1 => 'activity_id',
229 ],
230 'localizable' => FALSE,
231 'sig' => 'civicrm_case_activity::0::case_id::activity_id',
232 ],
233 ];
234 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
235 }
236
237 }