本文整理汇总了PHP中Build::getHash方法的典型用法代码示例。如果您正苦于以下问题:PHP Build::getHash方法的具体用法?PHP Build::getHash怎么用?PHP Build::getHash使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Build
的用法示例。
在下文中一共展示了Build::getHash方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: installMods
function installMods($mods)
{
global $config, $db, $user, $auth, $template, $cache;
global $phpbb_root_path, $phpbb_admin_path, $phpEx, $table_prefix;
$res = $db->sql_query(
'SELECT style_name FROM ' . $table_prefix
. 'styles WHERE style_id = ' . $config['default_style']
);
$this->style = $db->sql_fetchfield('style_name');
$build = Build::create();
foreach ($mods as $modName)
$build->addMod(Mod::create()->setName($modName));
try {
$deps = $build->getDependences('style');
} catch (Exception $e) {
return null;
}
if ($deps && !in_array($this->style, $deps)) {
return $build;
} else {
try {
InstallAction::me()->setBuild($build)->run();
file_put_contents(
USER_DIR . DIRECTORY_SEPARATOR . '.htaccess',
str_replace(
$this->build->getHash(),
$build->getHash(),
file_get_contents(
USER_DIR . DIRECTORY_SEPARATOR . '.htaccess'
)
)
);
file_put_contents(
USER_DIR . DIRECTORY_SEPARATOR . 'nginx.rewrite',
str_replace(
$this->build->getHash(),
$build->getHash(),
file_get_contents(
USER_DIR . DIRECTORY_SEPARATOR . 'nginx.rewrite'
)
)
);
} catch (Exception $e) {
trigger_error($e->getMessage(),E_USER_WARNING);
}
}
return $this;
}