__table = 'civicrm_payment_processor'; parent::__construct(); } /** * Returns foreign keys and entity references. * * @return array * [CRM_Core_Reference_Interface] */ 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() , 'domain_id', 'civicrm_domain', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'payment_processor_type_id', 'civicrm_payment_processor_type', '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() { if (!isset(Civi::$statics[__CLASS__]['fields'])) { Civi::$statics[__CLASS__]['fields'] = array( 'id' => array( 'name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Payment Processor ID') , 'description' => 'Payment Processor ID', 'required' => true, ) , 'domain_id' => array( 'name' => 'domain_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Payment Processor Domain') , 'description' => 'Which Domain is this match entry for', 'required' => true, 'FKClassName' => 'CRM_Core_DAO_Domain', 'pseudoconstant' => array( 'table' => 'civicrm_domain', 'keyColumn' => 'id', 'labelColumn' => 'name', ) ) , 'name' => array( 'name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Payment Processor') , 'description' => 'Payment Processor Name.', 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG, ) , 'description' => array( 'name' => 'description', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Processor Description') , 'description' => 'Payment Processor Description.', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'payment_processor_type_id' => array( 'name' => 'payment_processor_type_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Payment Processor Type ID') , 'FKClassName' => 'CRM_Financial_DAO_PaymentProcessorType', 'pseudoconstant' => array( 'table' => 'civicrm_payment_processor_type', 'keyColumn' => 'id', 'labelColumn' => 'title', ) ) , 'is_active' => array( 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Processor is Active?') , 'description' => 'Is this processor active?', ) , 'is_default' => array( 'name' => 'is_default', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Processor Is Default?') , 'description' => 'Is this processor the default?', ) , 'is_test' => array( 'name' => 'is_test', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Is Test Processor?') , 'description' => 'Is this processor for a test site?', ) , 'user_name' => array( 'name' => 'user_name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('User Name') , 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'password' => array( 'name' => 'password', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Password') , 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'signature' => array( 'name' => 'signature', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Signature') , ) , 'url_site' => array( 'name' => 'url_site', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Site URL') , 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'url_api' => array( 'name' => 'url_api', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('API URL') , 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'url_recur' => array( 'name' => 'url_recur', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Recurring Payments URL') , 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'url_button' => array( 'name' => 'url_button', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Button URL') , 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'subject' => array( 'name' => 'subject', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Subject') , 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'class_name' => array( 'name' => 'class_name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Suffix for PHP class name implementation') , 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'billing_mode' => array( 'name' => 'billing_mode', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Processor Billing Mode') , 'description' => 'Billing Mode (deprecated)', 'required' => true, ) , 'is_recur' => array( 'name' => 'is_recur', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Processor Supports Recurring?') , 'description' => 'Can process recurring contributions', ) , 'payment_type' => array( 'name' => 'payment_type', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Payment Type') , 'description' => 'Payment Type: Credit or Debit (deprecated)', 'default' => '1', ) , 'payment_instrument_id' => array( 'name' => 'payment_instrument_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Payment Method') , 'description' => 'Payment Instrument ID', 'default' => '1', 'pseudoconstant' => array( 'optionGroupName' => 'payment_instrument', 'optionEditPath' => 'civicrm/admin/options/payment_instrument', ) ) , 'accepted_credit_cards' => array( 'name' => 'accepted_credit_cards', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Accepted Credit Cards') , 'description' => 'array of accepted credit card types', 'default' => 'NULL', ) , ); 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() { 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() { return self::$_tableName; } /** * Returns if this table needs to be logged * * @return boolean */ function getLog() { return self::$_log; } /** * Returns the list of fields that can be imported * * @param bool $prefix * * @return array */ static function &import($prefix = false) { $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'payment_processor', $prefix, array()); return $r; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ static function &export($prefix = false) { $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'payment_processor', $prefix, array()); return $r; } }