當前位置: 首頁>>代碼示例>>PHP>>正文


PHP app::uninstall方法代碼示例

本文整理匯總了PHP中app::uninstall方法的典型用法代碼示例。如果您正苦於以下問題:PHP app::uninstall方法的具體用法?PHP app::uninstall怎麽用?PHP app::uninstall使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在app的用法示例。


在下文中一共展示了app::uninstall方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: uninstall

 function uninstall()
 {
     $obj = $this->system->loadModel("plugins/openid_taobao/openid_taobao_center_send");
     $return = $obj->edit_app_status("close");
     if ($return['result'] == 'succ') {
         return parent::uninstall();
     } else {
         echo "卸載失敗";
         return false;
     }
 }
開發者ID:noikiy,項目名稱:shopex_tmall,代碼行數:11,代碼來源:app.openid_taobao.php

示例2: uninstall

 function uninstall()
 {
     if (is_dir(dirname(dirname(dirname(__FILE__))) . '/widgets/scarebuying')) {
         if (!$this->deldir(dirname(dirname(dirname(__FILE__))) . '/widgets/scarebuying')) {
             echo '卸載失敗';
             exit;
         }
     }
     parent::uninstall();
     return true;
 }
開發者ID:noikiy,項目名稱:cxe,代碼行數:11,代碼來源:app.scarebuying.php

示例3: uninstall

 function uninstall()
 {
     $order_id = array();
     $orderdata = $this->db->select("SELECT order_id FROM sdb_orders WHERE order_refer ='taobao';");
     foreach ($orderdata as $key => $value) {
         $order_id[] = $value['order_id'];
     }
     $this->db->exec("DELETE FROM sdb_orders WHERE order_refer ='taobao';");
     if ($order_id) {
         $this->db->exec("DELETE FROM sdb_order_items WHERE order_id IN(" . implode(",", $order_id) . ");");
     }
     $this->db->exec("DELETE FROM sdb_status WHERE status_key ='TB_SESS' or status_key ='LAST_SYNCHRONIZATION';");
     return parent::uninstall();
 }
開發者ID:noikiy,項目名稱:MyShop,代碼行數:14,代碼來源:app.tb_order_ctl.php

示例4: uninstall

 function uninstall()
 {
     $this->db->exec('delete from sdb_payment_cfg where pay_type ="' . $this->type . '"');
     return parent::uninstall();
 }
開發者ID:noikiy,項目名稱:MyShop,代碼行數:5,代碼來源:app.pay_alipay.php

示例5: uninstall

 function uninstall()
 {
     parent::uninstall();
     return true;
 }
開發者ID:noikiy,項目名稱:cxe,代碼行數:5,代碼來源:app.tencent_share.php


注:本文中的app::uninstall方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。