本文整理汇总了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();
}
示例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;
}
}
示例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;
}
示例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;
}
}
}
示例5: install
function install()
{
parent::install();
return true;
}
示例6: install
function install()
{
$this->cop_file();
parent::install();
return true;
}