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


PHP app::install方法代碼示例

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


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

示例1: install

 function install()
 {
     if (!$this->xCopy(dirname(__FILE__) . '/scarebuying', dirname(dirname(dirname(__FILE__))) . '/widgets/scarebuying', 1)) {
         echo '安裝失敗!';
         exit;
     }
     return parent::install();
 }
開發者ID:noikiy,項目名稱:cxe,代碼行數:8,代碼來源:app.scarebuying.php

示例2: install

 function install()
 {
     if ($this->system->getConf('certificate.id')) {
         if ($this->system->getConf('app.tencent_share.apikey') == '') {
             $this->system->setConf('app.tencent_share.apikey', '36f6e95453c7472b879fdb1fbe765385');
             $this->system->setConf('app.tencent_share.appsecret', 'b06605154f048b25b01abd224bb8fd7d');
         }
         $this->copy_file();
         parent::install();
         return true;
     }
 }
開發者ID:noikiy,項目名稱:cxe,代碼行數:12,代碼來源:app.tencent_share.php

示例3: install

 function install()
 {
     parent::install();
     $sqlContent = file_get_contents(dirname(__FILE__) . "/dbdata/taobao_region.sql");
     foreach ($this->db->splitSql($sqlContent) as $sql) {
         if (!$this->db->exec($sql, true)) {
             echo '<h3>Sql Error</h3><textarea style="width:500px;height:300px">' . htmlspecialchars($sql) . '</textarea><br />';
             echo $this->db->errorInfo();
             exit;
         }
     }
     return true;
 }
開發者ID:noikiy,項目名稱:MyShop,代碼行數:13,代碼來源:app.tb_order_ctl.php

示例4: install

 function install()
 {
     if ($this->system->getConf('certificate.id')) {
         $obj = $this->system->loadModel("plugins/openid_taobao/openid_taobao_center_send");
         $obj->save_api_key();
         $return = $obj->edit_app_status("open");
         if ($return['result'] == 'succ') {
             return parent::install();
         } else {
             echo "啟用失敗";
             return false;
         }
     }
 }
開發者ID:noikiy,項目名稱:shopex_tmall,代碼行數:14,代碼來源:app.openid_taobao.php

示例5: install

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

示例6: install

 function install()
 {
     $this->cop_file();
     parent::install();
     return true;
 }
開發者ID:noikiy,項目名稱:cxe,代碼行數:6,代碼來源:app.pay_alipay.php


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