Skip to content

Commit

Permalink
Deleted Authorize.NET payment method (see #501)
Browse files Browse the repository at this point in the history
  • Loading branch information
aschempp committed Sep 16, 2013
1 parent d4f8f99 commit fdb47e6
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 973 deletions.
1 change: 0 additions & 1 deletion system/modules/isotope/config/config.php
Expand Up @@ -211,7 +211,6 @@
\Isotope\Model\Payment::registerModelType('saferpay', 'Isotope\Model\Payment\Saferpay');
\Isotope\Model\Payment::registerModelType('sparkasse', 'Isotope\Model\Payment\Sparkasse');
\Isotope\Model\Payment::registerModelType('sofortueberweisung', 'Isotope\Model\Payment\Sofortueberweisung');
\Isotope\Model\Payment::registerModelType('authorizedotnet', 'Isotope\Model\Payment\AuthorizeDotNet');

/**
* Shipping methods
Expand Down
36 changes: 0 additions & 36 deletions system/modules/isotope/dca/tl_iso_payment_modules.php
Expand Up @@ -127,7 +127,6 @@
'cash' => '{type_legend},name,label,type;{note_legend:hide},note;{config_legend},new_order_status,minimum_total,maximum_total,countries,shipping_modules,product_types;{price_legend:hide},price,tax_class;{expert_legend:hide},guests,protected;{enabled_legend},enabled',
'paypal' => '{type_legend},name,label,type;{note_legend:hide},note;{config_legend},new_order_status,minimum_total,maximum_total,countries,shipping_modules,product_types;{gateway_legend},paypal_account;{price_legend:hide},price,tax_class;{expert_legend:hide},guests,protected;{enabled_legend},debug,enabled',
'postfinance' => '{type_legend},name,label,type;{note_legend:hide},note;{config_legend},new_order_status,minimum_total,maximum_total,countries,shipping_modules,product_types;{gateway_legend},postfinance_pspid,postfinance_secret,postfinance_method;{price_legend:hide},price,tax_class;{expert_legend:hide},guests,protected;{enabled_legend},debug,enabled',
'authorizedotnet' => '{type_legend},name,label,type;{note_legend:hide},note;{config_legend},new_order_status,allowed_cc_types,requireCCV,minimum_total,maximum_total,countries,shipping_modules,product_types;{gateway_legend},authorize_login,authorize_trans_key,authorize_trans_type,authorize_delimiter;{price_legend:hide},price,tax_class;{expert_legend:hide},guests,protected;{enabled_legend},debug,enabled',
'datatrans' => '{type_legend},name,label,type;{note_legend:hide},note;{config_legend},new_order_status,trans_type,minimum_total,maximum_total,countries,shipping_modules,product_types;{gateway_legend},datatrans_id,datatrans_sign;{price_legend:hide},price,tax_class;{expert_legend:hide},guests,protected;{enabled_legend},debug,enabled',
'sparkasse' => '{type_legend},name,label,type;{note_legend:hide},note;{config_legend:hide},new_order_status,minimum_total,maximum_total,countries,shipping_modules,product_types;{gateway_legend},sparkasse_paymentmethod,trans_type,sparkasse_sslmerchant,sparkasse_sslpassword,sparkasse_merchantref;{price_legend:hide},price,tax_class;{expert_legend:hide},guests,protected;{enabled_legend},debug,enabled',
'sofortueberweisung' => '{type_legend},name,label,type;{note_legend:hide},note;{config_legend:hide},new_order_status,minimum_total,maximum_total,countries,shipping_modules,product_types;{gateway_legend},trans_type,sofortueberweisung_user_id,sofortueberweisung_project_id,sofortueberweisung_project_password;{price_legend:hide},price,tax_class;{expert_legend:hide},guests,protected;{enabled_legend},enabled',
Expand Down Expand Up @@ -320,41 +319,6 @@
'eval' => array('mandatory'=>true, 'tl_class'=>'w50'),
'sql' => "varchar(4) NOT NULL default ''"
),
'authorize_login' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_iso_payment_modules']['authorize_login'],
'exclude' => true,
'inputType' => 'text',
'eval' => array('mandatory'=>true, 'maxlength'=>255),
'sql' => "varchar(255) NOT NULL default ''"
),
'authorize_trans_key' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_iso_payment_modules']['authorize_trans_key'],
'exclude' => true,
'inputType' => 'text',
'eval' => array('mandatory'=>true, 'maxlength'=>255),
'sql' => "varchar(255) NOT NULL default ''"
),
'authorize_trans_type' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_iso_payment_modules']['authorize_trans_type'],
'exclude' => true,
'default' => 'AUTH_CAPTURE',
'inputType' => 'select',
'options' => array('AUTH_CAPTURE', 'AUTH_ONLY'),
'reference' => array('AUTH_CAPTURE'=>&$GLOBALS['TL_LANG']['tl_iso_payment_modules']['capture'], 'AUTH_ONLY'=>&$GLOBALS['TL_LANG']['tl_iso_payment_modules']['auth']),
'eval' => array('mandatory'=>true, 'maxlength'=>255, 'helpwizard'=>true),
'sql' => "varchar(32) NOT NULL default ''"
),
'authorize_delimiter' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_iso_payment_modules']['authorize_delimiter'],
'exclude' => true,
'inputType' => 'text',
'eval' => array('mandatory'=>true, 'maxlength'=>1),
'sql' => "varchar(4) NOT NULL default ''"
),
'datatrans_id' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_iso_payment_modules']['datatrans_id'],
Expand Down

0 comments on commit fdb47e6

Please sign in to comment.