本文整理汇总了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;
}
示例2: uninstall
public function uninstall()
{
if (!Configuration::deleteByName('ALLIEDWALLET_MERCHANT_ID') || !Configuration::deleteByName('ALLIEDWALLET_SITE_ID') || !parent::uninstall()) {
return false;
}
return true;
}
示例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;
}
示例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;
}
示例5: uninstall
public function uninstall()
{
if (!Configuration::deleteByName('SMT_AFFILIE') or !Configuration::deleteByName('SMT_TEST') or !parent::uninstall()) {
return false;
}
return true;
}
示例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;
}
示例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;
}
示例8: uninstall
public function uninstall()
{
if (!parent::uninstall() || !Configuration::deleteByName('MYMODULE_NAME')) {
return false;
}
return true;
}
示例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;
}
示例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;
}
示例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;
}
示例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*/
}
示例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;
}
示例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;
}
示例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;
}