X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FBatch%2FDAO%2FBatch.php;h=fa9a16a01447736fba4e6fcbf31da29828cb2f0a;hb=6b83d5bdd0f2ca546924feae6aa42aeddb1d40cf;hp=790e0d684ba003d1b4a7c892c1ebb93139e2aafc;hpb=6a7e5e5d97aba5f8039b94e1a22558461611057e;p=civicrm-core.git diff --git a/CRM/Batch/DAO/Batch.php b/CRM/Batch/DAO/Batch.php index 790e0d684b..6e52b333b4 100644 --- a/CRM/Batch/DAO/Batch.php +++ b/CRM/Batch/DAO/Batch.php @@ -1,453 +1,453 @@ __table = 'civicrm_batch'; 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() , 'created_id', 'civicrm_contact', 'id'); - Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'modified_id', 'civicrm_contact', 'id'); - Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'saved_search_id', 'civicrm_saved_search', 'id'); + Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'created_id', 'civicrm_contact', 'id'); + Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'modified_id', 'civicrm_contact', 'id'); + Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'saved_search_id', 'civicrm_saved_search', 'id'); 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('Batch ID') , - 'description' => 'Unique Address ID', - 'required' => true, + 'title' => ts('Batch ID'), + 'description' => ts('Unique Address ID'), + 'required' => TRUE, 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, - ) , - 'name' => array( + ], + 'name' => [ 'name' => 'name', 'type' => CRM_Utils_Type::T_STRING, - 'title' => ts('Batch Name') , - 'description' => 'Variable name/programmatic handle for this batch.', + 'title' => ts('Batch Name'), + 'description' => ts('Variable name/programmatic handle for this batch.'), 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG, 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, - 'html' => array( + 'html' => [ 'type' => 'Text', - ) , - ) , - 'title' => array( + ], + ], + 'title' => [ 'name' => 'title', 'type' => CRM_Utils_Type::T_STRING, - 'title' => ts('Batch Title') , - 'description' => 'Friendly Name.', - 'maxlength' => 64, - 'size' => CRM_Utils_Type::BIG, + 'title' => ts('Batch Title'), + 'description' => ts('Friendly Name.'), + 'maxlength' => 255, + 'size' => CRM_Utils_Type::HUGE, 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 1, - 'html' => array( + 'html' => [ 'type' => 'Text', - ) , - ) , - 'description' => array( + ], + ], + 'description' => [ 'name' => 'description', 'type' => CRM_Utils_Type::T_TEXT, - 'title' => ts('Batch Description') , - 'description' => 'Description of this batch set.', + 'title' => ts('Batch Description'), + 'description' => ts('Description of this batch set.'), 'rows' => 4, 'cols' => 80, 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 1, - 'html' => array( + 'html' => [ 'type' => 'TextArea', - ) , - ) , - 'created_id' => array( + ], + ], + 'created_id' => [ 'name' => 'created_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Batch Created By') , - 'description' => 'FK to Contact ID', + 'title' => ts('Batch Created By'), + 'description' => ts('FK to Contact ID'), 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, 'FKClassName' => 'CRM_Contact_DAO_Contact', - ) , - 'created_date' => array( + ], + 'created_date' => [ 'name' => 'created_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, - 'title' => ts('Batch Created Date') , - 'description' => 'When was this item created', + 'title' => ts('Batch Created Date'), + 'description' => ts('When was this item created'), 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, - 'html' => array( + 'html' => [ 'type' => 'Select Date', - ) , - ) , - 'modified_id' => array( + ], + ], + 'modified_id' => [ 'name' => 'modified_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Batch Modified By') , - 'description' => 'FK to Contact ID', + 'title' => ts('Batch Modified By'), + 'description' => ts('FK to Contact ID'), 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, 'FKClassName' => 'CRM_Contact_DAO_Contact', - ) , - 'modified_date' => array( + ], + 'modified_date' => [ 'name' => 'modified_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, - 'title' => ts('Batch Modified Date') , - 'description' => 'When was this item created', + 'title' => ts('Batch Modified Date'), + 'description' => ts('When was this item created'), 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, - ) , - 'saved_search_id' => array( + ], + 'saved_search_id' => [ 'name' => 'saved_search_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Batch Smart Group') , - 'description' => 'FK to Saved Search ID', + 'title' => ts('Batch Smart Group'), + 'description' => ts('FK to Saved Search ID'), 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, 'FKClassName' => 'CRM_Contact_DAO_SavedSearch', - 'html' => array( + 'html' => [ 'type' => 'EntityRef', - ) , - ) , - 'status_id' => array( + ], + ], + 'status_id' => [ 'name' => 'status_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Batch Status') , - 'description' => 'fk to Batch Status options in civicrm_option_values', - 'required' => true, + 'title' => ts('Batch Status'), + 'description' => ts('fk to Batch Status options in civicrm_option_values'), + 'required' => TRUE, 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, - 'html' => array( + 'html' => [ 'type' => 'Select', - ) , - 'pseudoconstant' => array( + ], + 'pseudoconstant' => [ 'optionGroupName' => 'batch_status', 'optionEditPath' => 'civicrm/admin/options/batch_status', - ) - ) , - 'type_id' => array( + ] + ], + 'type_id' => [ 'name' => 'type_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Batch Type') , - 'description' => 'fk to Batch Type options in civicrm_option_values', + 'title' => ts('Batch Type'), + 'description' => ts('fk to Batch Type options in civicrm_option_values'), 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, - 'html' => array( + 'html' => [ 'type' => 'Select', - ) , - 'pseudoconstant' => array( + ], + 'pseudoconstant' => [ 'optionGroupName' => 'batch_type', 'optionEditPath' => 'civicrm/admin/options/batch_type', - ) - ) , - 'mode_id' => array( + ] + ], + 'mode_id' => [ 'name' => 'mode_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Batch Mode') , - 'description' => 'fk to Batch mode options in civicrm_option_values', + 'title' => ts('Batch Mode'), + 'description' => ts('fk to Batch mode options in civicrm_option_values'), 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, - 'html' => array( + 'html' => [ 'type' => 'Select', - ) , - 'pseudoconstant' => array( + ], + 'pseudoconstant' => [ 'optionGroupName' => 'batch_mode', 'optionEditPath' => 'civicrm/admin/options/batch_mode', - ) - ) , - 'total' => array( + ] + ], + 'total' => [ 'name' => 'total', 'type' => CRM_Utils_Type::T_MONEY, - 'title' => ts('Batch Total') , - 'description' => 'Total amount for this batch.', - 'precision' => array( + 'title' => ts('Batch Total'), + 'description' => ts('Total amount for this batch.'), + 'precision' => [ 20, 2 - ) , + ], 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, - 'html' => array( + 'html' => [ 'type' => 'Text', - ) , - ) , - 'item_count' => array( + ], + ], + 'item_count' => [ 'name' => 'item_count', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Batch Number of Items') , - 'description' => 'Number of items in a batch.', + 'title' => ts('Batch Number of Items'), + 'description' => ts('Number of items in a batch.'), 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, - 'html' => array( + 'html' => [ 'type' => 'Text', - ) , - ) , - 'payment_instrument_id' => array( + ], + ], + 'payment_instrument_id' => [ 'name' => 'payment_instrument_id', 'type' => CRM_Utils_Type::T_INT, - 'title' => ts('Batch Payment Method') , - 'description' => 'fk to Payment Instrument options in civicrm_option_values', + 'title' => ts('Batch Payment Method'), + 'description' => ts('fk to Payment Instrument options in civicrm_option_values'), 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, - 'html' => array( + 'html' => [ 'type' => 'Select', - ) , - 'pseudoconstant' => array( + ], + 'pseudoconstant' => [ 'optionGroupName' => 'payment_instrument', 'optionEditPath' => 'civicrm/admin/options/payment_instrument', - ) - ) , - 'exported_date' => array( + ] + ], + 'exported_date' => [ 'name' => 'exported_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, - 'title' => ts('Batch Exported Date') , + 'title' => ts('Batch Exported Date'), 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', 'localizable' => 0, - ) , - 'data' => array( + ], + 'data' => [ 'name' => 'data', 'type' => CRM_Utils_Type::T_LONGTEXT, - 'title' => ts('Batch Data') , - 'description' => 'cache entered data', + 'title' => ts('Batch Data'), + 'description' => ts('cache entered data'), 'table_name' => 'civicrm_batch', 'entity' => 'Batch', 'bao' => 'CRM_Batch_BAO_Batch', '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 CRM_Core_DAO::getLocaleTableName(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 * @@ -455,10 +455,11 @@ class CRM_Batch_DAO_Batch extends CRM_Core_DAO { * * @return array */ - static function &import($prefix = false) { - $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'batch', $prefix, array()); + public static function &import($prefix = FALSE) { + $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'batch', $prefix, []); return $r; } + /** * Returns the list of fields that can be exported * @@ -466,8 +467,31 @@ class CRM_Batch_DAO_Batch extends CRM_Core_DAO { * * @return array */ - static function &export($prefix = false) { - $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'batch', $prefix, array()); + public static function &export($prefix = FALSE) { + $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'batch', $prefix, []); return $r; } + + /** + * Returns the list of indices + * + * @param bool $localize + * + * @return array + */ + public static function indices($localize = TRUE) { + $indices = [ + 'UI_name' => [ + 'name' => 'UI_name', + 'field' => [ + 0 => 'name', + ], + 'localizable' => FALSE, + 'unique' => TRUE, + 'sig' => 'civicrm_batch::1::name', + ], + ]; + return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices; + } + }