本文整理汇总了PHP中settings::get_error方法的典型用法代码示例。如果您正苦于以下问题:PHP settings::get_error方法的具体用法?PHP settings::get_error怎么用?PHP settings::get_error使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类settings
的用法示例。
在下文中一共展示了settings::get_error方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: sprintf
$settings->update_profiles();
} else {
if (!empty($settings->update_text)) {
$update_title = sprintf($user->lang['PROFILE_UPDATED'], $settings->profile);
$update_explain = sprintf($user->lang['UPDATED_EXPLAIN'], QI_VERSION);
$update_msg = '<ul>';
foreach ($settings->update_text as $update) {
$update_msg .= '<li>' . $user->lang[$update] . '</li>';
}
$update_msg .= '</ul>';
gen_error_msg($update_msg, $update_title, $update_explain, true);
}
}
// Probably best place to validate the settings
$settings->validate();
$error = $settings->get_error();
$page = empty($error) ? $page : 'settings';
if ($page == 'main' || $page == 'settings' || $alt_env_missing) {
if ($settings->install || $settings->is_converted || $mode == 'update_settings' || $page == 'settings' || $alt_env_missing) {
$page = 'settings';
require $quickinstall_path . 'includes/qi_settings.' . $phpEx;
}
}
// Hide manage boards if there is no saved config.
$template->assign_var('S_IN_INSTALL', $settings->install);
// now create a module_handler object
$module = new module_handler($quickinstall_path . 'modules/', 'qi_');
// Set some standard variables we want to force
if (defined('PHPBB_31')) {
$config = new \phpbb\config\config(array('load_tplcompile' => '1'));
set_config(false, false, false, $config);