X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FDAO%2FActionLog.php;h=9b3caefb5e2f4ffd2b0745e894c3eac8409a2376;hb=bfd5da64bde46b359a0d9195c0a30364ff277f58;hp=0a3170abc5b4bdf7bf4f7b2a906b919a322dd53b;hpb=639cf3412445892eb6b6fe96d8e09776d3a38eeb;p=civicrm-core.git diff --git a/CRM/Core/DAO/ActionLog.php b/CRM/Core/DAO/ActionLog.php index 0a3170abc5..9b3caefb5e 100644 --- a/CRM/Core/DAO/ActionLog.php +++ b/CRM/Core/DAO/ActionLog.php @@ -1,275 +1,278 @@ __table = 'civicrm_action_log'; parent::__construct(); } + /** * Returns foreign keys and entity references. * * @return array * [CRM_Core_Reference_Interface] */ - static function getReferenceColumns() { + public static function getReferenceColumns() { if (!isset(Civi::$statics[__CLASS__]['links'])) { Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__); - Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'contact_id', 'civicrm_contact', 'id'); - Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'action_schedule_id', 'civicrm_action_schedule', 'id'); - Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Dynamic(self::getTableName() , 'entity_id', NULL, 'id', 'entity_table'); + Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'contact_id', 'civicrm_contact', 'id'); + Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'action_schedule_id', 'civicrm_action_schedule', 'id'); + Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Dynamic(self::getTableName(), 'entity_id', NULL, 'id', 'entity_table'); CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']); } return Civi::$statics[__CLASS__]['links']; } + /** * Returns all the column names of this table * * @return array */ - static function &fields() { + public static function &fields() { if (!isset(Civi::$statics[__CLASS__]['fields'])) { - Civi::$statics[__CLASS__]['fields'] = array( - 'id' => array( + Civi::$statics[__CLASS__]['fields'] = [ + 'id' => [ 'name' => 'id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Action Schedule ID') , - 'required' => true, + 'title' => ts('Action Schedule ID'), + 'required' => TRUE, 'table_name' => 'civicrm_action_log', 'entity' => 'ActionLog', 'bao' => 'CRM_Core_BAO_ActionLog', - ) , - 'contact_id' => array( + 'localizable' => 0, + ], + 'contact_id' => [ 'name' => 'contact_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Action Schedule Contact ID') , + 'title' => ts('Action Schedule Contact ID'), 'description' => 'FK to Contact ID', 'table_name' => 'civicrm_action_log', 'entity' => 'ActionLog', 'bao' => 'CRM_Core_BAO_ActionLog', + 'localizable' => 0, 'FKClassName' => 'CRM_Contact_DAO_Contact', - ) , - 'entity_id' => array( + ], + 'entity_id' => [ 'name' => 'entity_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Entity ID') , + 'title' => ts('Entity ID'), 'description' => 'FK to id of the entity that the action was performed on. Pseudo - FK.', - 'required' => true, + 'required' => TRUE, 'table_name' => 'civicrm_action_log', 'entity' => 'ActionLog', 'bao' => 'CRM_Core_BAO_ActionLog', - ) , - 'entity_table' => array( + 'localizable' => 0, + ], + 'entity_table' => [ 'name' => 'entity_table', 'type' => CRM_Utils_Type::T_STRING, - 'title' => ts('Entity Table') , + 'title' => ts('Entity Table'), 'description' => 'name of the entity table for the above id, e.g. civicrm_activity, civicrm_participant', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'table_name' => 'civicrm_action_log', 'entity' => 'ActionLog', 'bao' => 'CRM_Core_BAO_ActionLog', - ) , - 'action_schedule_id' => array( + 'localizable' => 0, + ], + 'action_schedule_id' => [ 'name' => 'action_schedule_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Schedule') , + 'title' => ts('Schedule'), 'description' => 'FK to the action schedule that this action originated from.', - 'required' => true, + 'required' => TRUE, 'table_name' => 'civicrm_action_log', 'entity' => 'ActionLog', 'bao' => 'CRM_Core_BAO_ActionLog', + 'localizable' => 0, 'FKClassName' => 'CRM_Core_DAO_ActionSchedule', - ) , - 'action_date_time' => array( + ], + 'action_date_time' => [ 'name' => 'action_date_time', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, - 'title' => ts('Action Date And Time') , + 'title' => ts('Action Date And Time'), 'description' => 'date time that the action was performed on.', 'table_name' => 'civicrm_action_log', 'entity' => 'ActionLog', 'bao' => 'CRM_Core_BAO_ActionLog', - ) , - 'is_error' => array( + 'localizable' => 0, + ], + 'is_error' => [ 'name' => 'is_error', 'type' => CRM_Utils_Type::T_BOOLEAN, - 'title' => ts('Error?') , + 'title' => ts('Error?'), 'description' => 'Was there any error sending the reminder?', 'table_name' => 'civicrm_action_log', 'entity' => 'ActionLog', 'bao' => 'CRM_Core_BAO_ActionLog', - ) , - 'message' => array( + 'localizable' => 0, + ], + 'message' => [ 'name' => 'message', 'type' => CRM_Utils_Type::T_TEXT, - 'title' => ts('Message') , + 'title' => ts('Message'), 'description' => 'Description / text in case there was an error encountered.', 'table_name' => 'civicrm_action_log', 'entity' => 'ActionLog', 'bao' => 'CRM_Core_BAO_ActionLog', - ) , - 'repetition_number' => array( + 'localizable' => 0, + ], + 'repetition_number' => [ 'name' => 'repetition_number', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Repetition Number') , + 'title' => ts('Repetition Number'), 'description' => 'Keeps track of the sequence number of this repetition.', 'table_name' => 'civicrm_action_log', 'entity' => 'ActionLog', 'bao' => 'CRM_Core_BAO_ActionLog', - ) , - 'reference_date' => array( + 'localizable' => 0, + ], + 'reference_date' => [ 'name' => 'reference_date', 'type' => CRM_Utils_Type::T_DATE, - 'title' => ts('Reference Date') , + 'title' => ts('Reference Date'), 'description' => 'Stores the date from the entity which triggered this reminder action (e.g. membership.end_date for most membership renewal reminders)', 'default' => 'NULL', 'table_name' => 'civicrm_action_log', 'entity' => 'ActionLog', 'bao' => 'CRM_Core_BAO_ActionLog', - ) , - ); + 'localizable' => 0, + ], + ]; CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']); } return Civi::$statics[__CLASS__]['fields']; } + /** * Return a mapping from field-name to the corresponding key (as used in fields()). * * @return array * Array(string $name => string $uniqueName). */ - static function &fieldKeys() { + public static function &fieldKeys() { if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) { Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields())); } return Civi::$statics[__CLASS__]['fieldKeys']; } + /** * Returns the names of this table * * @return string */ - static function getTableName() { + public static function getTableName() { return self::$_tableName; } + /** * Returns if this table needs to be logged * - * @return boolean + * @return bool */ - function getLog() { + public function getLog() { return self::$_log; } + /** * Returns the list of fields that can be imported * @@ -277,10 +280,11 @@ class CRM_Core_DAO_ActionLog extends CRM_Core_DAO { * * @return array */ - static function &import($prefix = false) { - $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'action_log', $prefix, array()); + public static function &import($prefix = FALSE) { + $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'action_log', $prefix, []); return $r; } + /** * Returns the list of fields that can be exported * @@ -288,8 +292,21 @@ class CRM_Core_DAO_ActionLog extends CRM_Core_DAO { * * @return array */ - static function &export($prefix = false) { - $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'action_log', $prefix, array()); + public static function &export($prefix = FALSE) { + $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'action_log', $prefix, []); return $r; } + + /** + * Returns the list of indices + * + * @param bool $localize + * + * @return array + */ + public static function indices($localize = TRUE) { + $indices = []; + return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices; + } + }