當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。