Delete entities in the reverse order that they were created
[civicrm-core.git] / CRM / Core / DAO / ActionLog.php
CommitLineData
e501603b 1<?php
c3fc2621 2
e501603b
TO
3/**
4 * @package CRM
8c9251b3 5 * @copyright CiviCRM LLC (c) 2004-2018
e501603b
TO
6 *
7 * Generated from xml/schema/CRM/Core/ActionLog.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
022785d8 9 * (GenCodeChecksum:4ef96df03630ecc884c881b79a40818f)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the ActionLog entity.
f41f0342 14 */
e501603b 15class CRM_Core_DAO_ActionLog extends CRM_Core_DAO {
c3fc2621 16
e501603b 17 /**
f41f0342 18 * Static instance to hold the table name.
e501603b
TO
19 *
20 * @var string
21 */
22 static $_tableName = 'civicrm_action_log';
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 */
c3fc2621
CW
29 static $_log = FALSE;
30
e501603b 31 /**
e501603b
TO
32 * @var int unsigned
33 */
34 public $id;
c3fc2621 35
e501603b
TO
36 /**
37 * FK to Contact ID
38 *
39 * @var int unsigned
40 */
41 public $contact_id;
c3fc2621 42
e501603b
TO
43 /**
44 * FK to id of the entity that the action was performed on. Pseudo - FK.
45 *
46 * @var int unsigned
47 */
48 public $entity_id;
c3fc2621 49
e501603b
TO
50 /**
51 * name of the entity table for the above id, e.g. civicrm_activity, civicrm_participant
52 *
53 * @var string
54 */
55 public $entity_table;
c3fc2621 56
e501603b
TO
57 /**
58 * FK to the action schedule that this action originated from.
59 *
60 * @var int unsigned
61 */
62 public $action_schedule_id;
c3fc2621 63
e501603b
TO
64 /**
65 * date time that the action was performed on.
66 *
67 * @var datetime
68 */
69 public $action_date_time;
c3fc2621 70
e501603b
TO
71 /**
72 * Was there any error sending the reminder?
73 *
74 * @var boolean
75 */
76 public $is_error;
c3fc2621 77
e501603b
TO
78 /**
79 * Description / text in case there was an error encountered.
80 *
81 * @var text
82 */
83 public $message;
c3fc2621 84
e501603b
TO
85 /**
86 * Keeps track of the sequence number of this repetition.
87 *
88 * @var int unsigned
89 */
90 public $repetition_number;
c3fc2621 91
e501603b
TO
92 /**
93 * Stores the date from the entity which triggered this reminder action (e.g. membership.end_date for most membership renewal reminders)
94 *
95 * @var date
96 */
97 public $reference_date;
c3fc2621 98
e501603b 99 /**
f41f0342 100 * Class constructor.
e501603b 101 */
c3fc2621 102 public function __construct() {
e501603b
TO
103 $this->__table = 'civicrm_action_log';
104 parent::__construct();
105 }
c3fc2621 106
e501603b 107 /**
f41f0342 108 * Returns foreign keys and entity references.
e501603b
TO
109 *
110 * @return array
111 * [CRM_Core_Reference_Interface]
112 */
c3fc2621 113 public static function getReferenceColumns() {
346aaaba
TO
114 if (!isset(Civi::$statics[__CLASS__]['links'])) {
115 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
c3fc2621
CW
116 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'contact_id', 'civicrm_contact', 'id');
117 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'action_schedule_id', 'civicrm_action_schedule', 'id');
118 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Dynamic(self::getTableName(), 'entity_id', NULL, 'id', 'entity_table');
346aaaba 119 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 120 }
346aaaba 121 return Civi::$statics[__CLASS__]['links'];
e501603b 122 }
c3fc2621 123
e501603b
TO
124 /**
125 * Returns all the column names of this table
126 *
127 * @return array
128 */
c3fc2621 129 public static function &fields() {
346aaaba 130 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
131 Civi::$statics[__CLASS__]['fields'] = [
132 'id' => [
e501603b
TO
133 'name' => 'id',
134 'type' => CRM_Utils_Type::T_INT,
c3fc2621
CW
135 'title' => ts('Action Schedule ID'),
136 'required' => TRUE,
522a26c9 137 'table_name' => 'civicrm_action_log',
138 'entity' => 'ActionLog',
139 'bao' => 'CRM_Core_BAO_ActionLog',
6a7e5e5d 140 'localizable' => 0,
c3fc2621
CW
141 ],
142 'contact_id' => [
e501603b
TO
143 'name' => 'contact_id',
144 'type' => CRM_Utils_Type::T_INT,
c3fc2621 145 'title' => ts('Action Schedule Contact ID'),
e501603b 146 'description' => 'FK to Contact ID',
522a26c9 147 'table_name' => 'civicrm_action_log',
148 'entity' => 'ActionLog',
149 'bao' => 'CRM_Core_BAO_ActionLog',
6a7e5e5d 150 'localizable' => 0,
e501603b 151 'FKClassName' => 'CRM_Contact_DAO_Contact',
c3fc2621
CW
152 ],
153 'entity_id' => [
e501603b
TO
154 'name' => 'entity_id',
155 'type' => CRM_Utils_Type::T_INT,
c3fc2621 156 'title' => ts('Entity ID'),
e501603b 157 'description' => 'FK to id of the entity that the action was performed on. Pseudo - FK.',
c3fc2621 158 'required' => TRUE,
522a26c9 159 'table_name' => 'civicrm_action_log',
160 'entity' => 'ActionLog',
161 'bao' => 'CRM_Core_BAO_ActionLog',
6a7e5e5d 162 'localizable' => 0,
c3fc2621
CW
163 ],
164 'entity_table' => [
e501603b
TO
165 'name' => 'entity_table',
166 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 167 'title' => ts('Entity Table'),
e501603b
TO
168 'description' => 'name of the entity table for the above id, e.g. civicrm_activity, civicrm_participant',
169 'maxlength' => 255,
170 'size' => CRM_Utils_Type::HUGE,
522a26c9 171 'table_name' => 'civicrm_action_log',
172 'entity' => 'ActionLog',
173 'bao' => 'CRM_Core_BAO_ActionLog',
6a7e5e5d 174 'localizable' => 0,
c3fc2621
CW
175 ],
176 'action_schedule_id' => [
e501603b
TO
177 'name' => 'action_schedule_id',
178 'type' => CRM_Utils_Type::T_INT,
c3fc2621 179 'title' => ts('Schedule'),
e501603b 180 'description' => 'FK to the action schedule that this action originated from.',
c3fc2621 181 'required' => TRUE,
522a26c9 182 'table_name' => 'civicrm_action_log',
183 'entity' => 'ActionLog',
184 'bao' => 'CRM_Core_BAO_ActionLog',
6a7e5e5d 185 'localizable' => 0,
e501603b 186 'FKClassName' => 'CRM_Core_DAO_ActionSchedule',
c3fc2621
CW
187 ],
188 'action_date_time' => [
e501603b
TO
189 'name' => 'action_date_time',
190 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
c3fc2621 191 'title' => ts('Action Date And Time'),
e501603b 192 'description' => 'date time that the action was performed on.',
522a26c9 193 'table_name' => 'civicrm_action_log',
194 'entity' => 'ActionLog',
195 'bao' => 'CRM_Core_BAO_ActionLog',
6a7e5e5d 196 'localizable' => 0,
c3fc2621
CW
197 ],
198 'is_error' => [
e501603b
TO
199 'name' => 'is_error',
200 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 201 'title' => ts('Error?'),
e501603b 202 'description' => 'Was there any error sending the reminder?',
522a26c9 203 'table_name' => 'civicrm_action_log',
204 'entity' => 'ActionLog',
205 'bao' => 'CRM_Core_BAO_ActionLog',
6a7e5e5d 206 'localizable' => 0,
c3fc2621
CW
207 ],
208 'message' => [
e501603b
TO
209 'name' => 'message',
210 'type' => CRM_Utils_Type::T_TEXT,
c3fc2621 211 'title' => ts('Message'),
e501603b 212 'description' => 'Description / text in case there was an error encountered.',
522a26c9 213 'table_name' => 'civicrm_action_log',
214 'entity' => 'ActionLog',
215 'bao' => 'CRM_Core_BAO_ActionLog',
6a7e5e5d 216 'localizable' => 0,
c3fc2621
CW
217 ],
218 'repetition_number' => [
e501603b
TO
219 'name' => 'repetition_number',
220 'type' => CRM_Utils_Type::T_INT,
c3fc2621 221 'title' => ts('Repetition Number'),
e501603b 222 'description' => 'Keeps track of the sequence number of this repetition.',
522a26c9 223 'table_name' => 'civicrm_action_log',
224 'entity' => 'ActionLog',
225 'bao' => 'CRM_Core_BAO_ActionLog',
6a7e5e5d 226 'localizable' => 0,
c3fc2621
CW
227 ],
228 'reference_date' => [
e501603b
TO
229 'name' => 'reference_date',
230 'type' => CRM_Utils_Type::T_DATE,
c3fc2621 231 'title' => ts('Reference Date'),
e501603b
TO
232 'description' => 'Stores the date from the entity which triggered this reminder action (e.g. membership.end_date for most membership renewal reminders)',
233 'default' => 'NULL',
522a26c9 234 'table_name' => 'civicrm_action_log',
235 'entity' => 'ActionLog',
236 'bao' => 'CRM_Core_BAO_ActionLog',
6a7e5e5d 237 'localizable' => 0,
c3fc2621
CW
238 ],
239 ];
346aaaba 240 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 241 }
346aaaba 242 return Civi::$statics[__CLASS__]['fields'];
e501603b 243 }
c3fc2621 244
e501603b 245 /**
bd8e0b14 246 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
247 *
248 * @return array
bd8e0b14 249 * Array(string $name => string $uniqueName).
e501603b 250 */
c3fc2621 251 public static function &fieldKeys() {
bd8e0b14
TO
252 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
253 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 254 }
bd8e0b14 255 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 256 }
c3fc2621 257
e501603b
TO
258 /**
259 * Returns the names of this table
260 *
261 * @return string
262 */
c3fc2621 263 public static function getTableName() {
e501603b
TO
264 return self::$_tableName;
265 }
c3fc2621 266
e501603b
TO
267 /**
268 * Returns if this table needs to be logged
269 *
c3fc2621 270 * @return bool
e501603b 271 */
c3fc2621 272 public function getLog() {
e501603b
TO
273 return self::$_log;
274 }
c3fc2621 275
e501603b
TO
276 /**
277 * Returns the list of fields that can be imported
278 *
279 * @param bool $prefix
280 *
281 * @return array
282 */
c3fc2621
CW
283 public static function &import($prefix = FALSE) {
284 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'action_log', $prefix, []);
60808919 285 return $r;
e501603b 286 }
c3fc2621 287
e501603b
TO
288 /**
289 * Returns the list of fields that can be exported
290 *
291 * @param bool $prefix
292 *
293 * @return array
294 */
c3fc2621
CW
295 public static function &export($prefix = FALSE) {
296 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'action_log', $prefix, []);
60808919 297 return $r;
e501603b 298 }
c3fc2621 299
e7a6b91a
AS
300 /**
301 * Returns the list of indices
c3fc2621
CW
302 *
303 * @param bool $localize
304 *
305 * @return array
e7a6b91a
AS
306 */
307 public static function indices($localize = TRUE) {
c3fc2621 308 $indices = [];
e7a6b91a
AS
309 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
310 }
c3fc2621 311
e501603b 312}