当前位置: 首页>>代码示例>>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;未经允许,请勿转载。