当前位置: 首页>>代码示例>>PHP>>正文


PHP PaymentModule::uninstall方法代码示例

本文整理汇总了PHP中PaymentModule::uninstall方法的典型用法代码示例。如果您正苦于以下问题:PHP PaymentModule::uninstall方法的具体用法?PHP PaymentModule::uninstall怎么用?PHP PaymentModule::uninstall使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PaymentModule的用法示例。


在下文中一共展示了PaymentModule::uninstall方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: uninstall

 public function uninstall()
 {
     if (!parent::uninstall() or !Configuration::deleteByName('PAYPAL_HEADER') or !Configuration::deleteByName('PAYPAL_SANDBOX') or !Configuration::deleteByName('PAYPAL_API_USER') or !Configuration::deleteByName('PAYPAL_API_PASSWORD') or !Configuration::deleteByName('PAYPAL_API_SIGNATURE') or !Configuration::deleteByName('PAYPAL_EXPRESS_CHECKOUT') or !Configuration::deleteByName('PAYPAL_INTEGRAL')) {
         return false;
     }
     return true;
 }
开发者ID:vincent,项目名称:theinvertebrates,代码行数:7,代码来源:paypalapi.php

示例2: uninstall

 public function uninstall()
 {
     if (!Configuration::deleteByName('ALLIEDWALLET_MERCHANT_ID') || !Configuration::deleteByName('ALLIEDWALLET_SITE_ID') || !parent::uninstall()) {
         return false;
     }
     return true;
 }
开发者ID:rtajmahal,项目名称:PrestaShop-modules,代码行数:7,代码来源:alliedwallet.php

示例3: uninstall

 public function uninstall()
 {
     if (!Configuration::deleteByName('NIMBLEPAYMENT_CLIENT_ID') || !Configuration::deleteByName('NIMBLEPAYMENT_CLIENT_SECRET') || !Configuration::deleteByName('NIMBLEPAYMENT_URLTPV') || !Configuration::deleteByName('NIMBLEPAYMENT_NAME') || !Configuration::deleteByName('NIMBLEPAYMENT_DESCRIPTION') || !parent::uninstall()) {
         return false;
     }
     return true;
 }
开发者ID:joseic,项目名称:nimblepayment,代码行数:7,代码来源:nimblepayment.php

示例4: uninstall

 public function uninstall()
 {
     if (!Configuration::deleteByName('PFC_API_USER') || !Configuration::deleteByName('PFC_API_BRANCH') || !Configuration::deleteByName('PFC_ENVIRONMENT') || !Configuration::deleteByName('PFC_CONCEPTO') || !parent::uninstall()) {
         return false;
     }
     return true;
 }
开发者ID:javolero,项目名称:PrestaShopPlugin,代码行数:7,代码来源:pagofacilcash.php

示例5: uninstall

 public function uninstall()
 {
     if (!Configuration::deleteByName('SMT_AFFILIE') or !Configuration::deleteByName('SMT_TEST') or !parent::uninstall()) {
         return false;
     }
     return true;
 }
开发者ID:nacef-labidi,项目名称:smt4presta,代码行数:7,代码来源:smtsps.php

示例6: uninstall

 public function uninstall()
 {
     if (!Configuration::deleteByName('mercadopago_CLIENT_ID') or !Configuration::deleteByName('mercadopago_CLIENT_SECRET') or !Configuration::deleteByName('mercadopago_URLPROCESS') or !Configuration::deleteByName('mercadopago_URLSUCCESFULL') or !Configuration::deleteByName('mercadopago_BTN') or !Configuration::deleteByName('mercadopago_EXCLUDE') or !Configuration::deleteByName('mercadopago_COUNTRY') or !parent::uninstall()) {
         return false;
     }
     return true;
 }
开发者ID:mercadeoweb,项目名称:cart-prestashop,代码行数:7,代码来源:mercadopago.php

示例7: uninstall

 public function uninstall()
 {
     if (!Configuration::deleteByName('PF_API_USER') || !Configuration::deleteByName('PF_API_BRANCH') || !Configuration::deleteByName('PF_ENVIRONMENT') || !Configuration::deleteByName('PF_NO_MAIL') || !Configuration::deleteByName('PF_EXCHANGE') || !Configuration::deleteByName('PF_INSTALLMENTS') || !parent::uninstall()) {
         return false;
     }
     return true;
 }
开发者ID:javolero,项目名称:PrestaShopPlugin,代码行数:7,代码来源:pagofacil.php

示例8: uninstall

 public function uninstall()
 {
     if (!parent::uninstall() || !Configuration::deleteByName('MYMODULE_NAME')) {
         return false;
     }
     return true;
 }
开发者ID:sengupta,项目名称:instamojo-prestashop,代码行数:7,代码来源:instamojo.php

示例9: uninstall

 public function uninstall()
 {
     if (!Configuration::deleteByName('mercadopago_CLIENT_ID') or !Configuration::deleteByName('mercadopago_CLIENT_SECRET') or !Configuration::deleteByName('mercadopago_CATEGORY') or !Configuration::deleteByName('mercadopago_TYPECHECKOUT') or !Configuration::deleteByName('mercadopago_SANDBOX') or !Configuration::deleteByName('mercadopago_URLPROCESS') or !Configuration::deleteByName('mercadopago_URLSUCCESFULL') or !Configuration::deleteByName('mercadopago_BTN') or !Configuration::deleteByName('mercadopago_METHODS') or !Configuration::deleteByName('mercadopago_INSTALLMENTS') or !Configuration::deleteByName('mercadopago_COUNTRY') or !parent::uninstall()) {
         return false;
     }
     return true;
 }
开发者ID:mercadeoweb,项目名称:cart-prestashop,代码行数:7,代码来源:mercadopago.php

示例10: uninstall

 public function uninstall()
 {
     if (!parent::uninstall() || !Configuration::deleteByName('PAYU_LATAM_MERCHANT_ID') || !Configuration::deleteByName('PAYU_LATAM_ACCOUNT_ID') || !Configuration::deleteByName('PAYU_LATAM_API_KEY') || !Configuration::deleteByName('PAYU_LATAM_TEST') || !Configuration::deleteByName('PAYU_OS_PENDING') || !Configuration::deleteByName('PAYU_OS_FAILED') || !Configuration::deleteByName('PAYU_OS_REJECTED') || !Configuration::deleteByName('PAYU_LATAM_PUBLIC_KEY') || !Configuration::deleteByName('PAYU_LATAM_API_LOGIN')) {
         return false;
     }
     return true;
 }
开发者ID:IngenioContenidoDigital,项目名称:serta,代码行数:7,代码来源:payulatam.php

示例11: uninstall

 public function uninstall()
 {
     if (!Configuration::deleteByName('ECARD_MERCHANTID') or !Configuration::deleteByName('ECARD_PASS') or !Configuration::deleteByName('ECARD_PENDING') or !Configuration::deleteByName('ECARD_CLOSED') or !Configuration::deleteByName('ECARD_DECLINED') or !Configuration::deleteByName('ECARD_UNDEFINED') or !parent::uninstall()) {
         return false;
     }
     return true;
 }
开发者ID:iorweth7893,项目名称:Prestashop-eCard,代码行数:7,代码来源:ecard.php

示例12: uninstall

 public function uninstall()
 {
     return Configuration::deleteByName('PAYMENTSENSE_GATEWAYID') && Configuration::deleteByName('PAYMENTSENSE_GATEWAYPASS') && Configuration::deleteByName('PAYMENTSENSE_PSK') && Configuration::deleteByName('PAYMENTSENSE_DEBUG') && Configuration::deleteByName('PAYMENTSENSE_TRANSACTION_TYPE') && parent::uninstall();
     /* Blank line to retain line numbers in changelog*/
     /* Blank line to retain line numbers in changelog*/
     /* Blank line to retain line numbers in changelog*/
 }
开发者ID:juniorhq88,项目名称:PrestaShop-modules,代码行数:7,代码来源:paymentsense.php

示例13: uninstall

 public function uninstall()
 {
     if (!Configuration::deleteByName('BEGATEWAY_SHOP_ID') or !Configuration::deleteByName('BEGATEWAY_SHOP_PASS') or !Configuration::deleteByName('BEGATEWAY_SHOP_PAYTYPE') or !Configuration::deleteByName('BEGATEWAY_DOMAIN_GATEWAY') or !Configuration::deleteByName('BEGATEWAY_DOMAIN_CHECKOUT') or !Db::getInstance()->Execute('DROP TABLE `' . _DB_PREFIX_ . 'begateway_transaction`') or !$this->unregisterHook('payment') or !$this->unregisterHook('backOfficeHeader') or !$this->unregisterHook('displayHeader') or !$this->unregisterHook('paymentReturn') or !parent::uninstall()) {
         return false;
     }
     return true;
 }
开发者ID:beGateway,项目名称:prestashop-payment-module,代码行数:7,代码来源:beGateway.php

示例14: uninstall

 public function uninstall()
 {
     if (!$this->deleteBcashOrderStatus() || !$this->deleteDefaultBcashDiscounts() || !Configuration::deleteByName('PS_OS_BCASH_IN_PROGRESS') || !Configuration::deleteByName('PS_OS_BCASH_APPROVED') || !Configuration::deleteByName('PS_OS_BCASH_COMPLETED') || !Configuration::deleteByName('PS_OS_BCASH_IN_DISPUTE') || !Configuration::deleteByName('PS_OS_BCASH_REFUNDED') || !Configuration::deleteByName('PS_OS_BCASH_CANCELLED') || !Configuration::deleteByName('PS_OS_BCASH_CHARGEBACK') || !parent::uninstall()) {
         return false;
     }
     return true;
 }
开发者ID:payu-br,项目名称:bcash-prestashop-transparente,代码行数:7,代码来源:bcash.php

示例15: uninstall

 public function uninstall()
 {
     if (!Configuration::deleteByName('PayTM_MERCHANT_ID') or !Configuration::deleteByName('PayTM_SECRET_KEY') or !Configuration::deleteByName('PayTM_MODE') or !Configuration::deleteByName('PayTM_GATEWAY_URL') or !Configuration::deleteByName('PayTM_MERCHANT_INDUSTRY_TYPE') or !Configuration::deleteByName('PayTM_MERCHANT_CHANNEL_ID') or !Configuration::deleteByName('PayTM_MERCHANT_WEBSITE') or !Configuration::deleteByName('PayTM_ENABLE_CALLBACK') or !parent::uninstall()) {
         return false;
     }
     return true;
 }
开发者ID:Paytm-Payments,项目名称:Paytm_Prestashop_Kit,代码行数:7,代码来源:paytm.php


注:本文中的PaymentModule::uninstall方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。