__table = 'civicrm_payment_processor_type'; parent::__construct(); } /** * Returns localized title of this entity. * * @param bool $plural * Whether to return the plural version of the title. */ public static function getEntityTitle($plural = FALSE) { return $plural ? ts('Payment Processor Types') : ts('Payment Processor Type'); } /** * Returns all the column names of this table * * @return array */ public static function &fields() { if (!isset(Civi::$statics[__CLASS__]['fields'])) { Civi::$statics[__CLASS__]['fields'] = [ 'id' => [ 'name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Payment Processor Type ID'), 'description' => ts('Payment Processor Type ID'), 'required' => TRUE, 'where' => 'civicrm_payment_processor_type.id', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'name' => [ 'name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Payment Processor Type variable name to be used in code'), 'description' => ts('Payment Processor Type Name.'), 'required' => TRUE, 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG, 'where' => 'civicrm_payment_processor_type.name', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'title' => [ 'name' => 'title', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Payment Processor Type Title'), 'description' => ts('Payment Processor Type Title.'), 'required' => TRUE, 'maxlength' => 127, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.title', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'description' => [ 'name' => 'description', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Processor Type Description'), 'description' => ts('Payment Processor Description.'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.description', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'is_active' => [ 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Processor Type Is Active?'), 'description' => ts('Is this processor active?'), 'where' => 'civicrm_payment_processor_type.is_active', 'default' => '1', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'is_default' => [ 'name' => 'is_default', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Processor Type is Default?'), 'description' => ts('Is this processor the default?'), 'where' => 'civicrm_payment_processor_type.is_default', 'default' => '0', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'user_name_label' => [ 'name' => 'user_name_label', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Label for User Name if used'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.user_name_label', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'password_label' => [ 'name' => 'password_label', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Label for password'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.password_label', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'signature_label' => [ 'name' => 'signature_label', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Label for Signature'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.signature_label', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'subject_label' => [ 'name' => 'subject_label', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Label for Subject'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.subject_label', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'class_name' => [ 'name' => 'class_name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Suffix for PHP class name implementation'), 'required' => TRUE, 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.class_name', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'url_site_default' => [ 'name' => 'url_site_default', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Default Live Site URL'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.url_site_default', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'url_api_default' => [ 'name' => 'url_api_default', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Default API Site URL'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.url_api_default', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'url_recur_default' => [ 'name' => 'url_recur_default', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Default Live Recurring Payments URL'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.url_recur_default', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'url_button_default' => [ 'name' => 'url_button_default', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Default Live Button URL'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.url_button_default', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'url_site_test_default' => [ 'name' => 'url_site_test_default', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Default Test Site URL'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.url_site_test_default', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'url_api_test_default' => [ 'name' => 'url_api_test_default', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Default Test API URL'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.url_api_test_default', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'url_recur_test_default' => [ 'name' => 'url_recur_test_default', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Default Test Recurring Payment URL'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.url_recur_test_default', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'url_button_test_default' => [ 'name' => 'url_button_test_default', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Default Test Button URL'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_payment_processor_type.url_button_test_default', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'billing_mode' => [ 'name' => 'billing_mode', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Billing Mode'), 'description' => ts('Billing Mode (deprecated)'), 'required' => TRUE, 'where' => 'civicrm_payment_processor_type.billing_mode', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'html' => [ 'type' => 'Select', ], 'pseudoconstant' => [ 'callback' => 'CRM_Core_SelectValues::billingMode', ], 'add' => '1.8', ], 'is_recur' => [ 'name' => 'is_recur', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Processor Type Supports Recurring?'), 'description' => ts('Can process recurring contributions'), 'where' => 'civicrm_payment_processor_type.is_recur', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '1.8', ], 'payment_type' => [ 'name' => 'payment_type', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Processor Type Payment Type'), 'description' => ts('Payment Type: Credit or Debit (deprecated)'), 'where' => 'civicrm_payment_processor_type.payment_type', 'default' => '1', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'add' => '3.0', ], 'payment_instrument_id' => [ 'name' => 'payment_instrument_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Payment Method'), 'description' => ts('Payment Instrument ID'), 'where' => 'civicrm_payment_processor_type.payment_instrument_id', 'default' => '1', 'table_name' => 'civicrm_payment_processor_type', 'entity' => 'PaymentProcessorType', 'bao' => 'CRM_Financial_BAO_PaymentProcessorType', 'localizable' => 0, 'pseudoconstant' => [ 'optionGroupName' => 'payment_instrument', 'optionEditPath' => 'civicrm/admin/options/payment_instrument', ], 'add' => '4.7', ], ]; 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). */ 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 */ public static function getTableName() { return self::$_tableName; } /** * Returns if this table needs to be logged * * @return bool */ public function getLog() { return self::$_log; } /** * Returns the list of fields that can be imported * * @param bool $prefix * * @return array */ public static function &import($prefix = FALSE) { $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'payment_processor_type', $prefix, []); return $r; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ public static function &export($prefix = FALSE) { $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'payment_processor_type', $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_payment_processor_type::1::name', ], ]; return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices; } }