本文整理汇总了PHP中Toolbar::saveTool方法的典型用法代码示例。如果您正苦于以下问题:PHP Toolbar::saveTool方法的具体用法?PHP Toolbar::saveTool怎么用?PHP Toolbar::saveTool使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Toolbar
的用法示例。
在下文中一共展示了Toolbar::saveTool方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: header
}
if (isset($_REQUEST['save'], $_REQUEST['pref'])) {
$prefName = 'toolbar_' . $section . ($comments ? '_comments' : '');
$tikilib->set_preference($prefName, $_REQUEST['pref']);
$tikilib->set_preference($prefName . 'modified', 'y');
}
if (isset($_REQUEST['reset']) && $section != 'global' || isset($_REQUEST['reset_global']) && $section == 'global') {
$prefName = 'toolbar_' . $section . ($comments ? '_comments' : '');
$tikilib->delete_preference($prefName);
$tikilib->set_preference($prefName . 'modified', 'n');
$smarty->loadPlugin('smarty_function_query');
header('location: ?' . smarty_function_query(array('_urlencode' => 'n'), $smarty));
}
if (!empty($_REQUEST['save_tool']) && !empty($_REQUEST['tool_name'])) {
// input from the tool edit form
Toolbar::saveTool($_REQUEST['tool_name'], $_REQUEST['tool_label'], $_REQUEST['tool_icon'], $_REQUEST['tool_token'], $_REQUEST['tool_syntax'], $_REQUEST['tool_type'], $_REQUEST['tool_plugin']);
$smarty->loadPlugin('smarty_function_query');
header('location: ?' . smarty_function_query(array('_urlencode' => 'n'), $smarty));
}
$current = $tikilib->get_preference('toolbar_' . $section . ($comments ? '_comments' : ''));
if (empty($current)) {
$current = $tikilib->get_preference('toolbar_global' . ($comments ? '_comments' : ''));
$smarty->assign('not_global', false);
} else {
$smarty->assign('not_global', true);
}
$smarty->assign('not_default', false);
if ($section == 'global') {
global $cachelib;
if ($defprefs = $cachelib->getSerialized("tiki_default_preferences_cache")) {
if ($defprefs['toolbar_global' . ($comments ? '_comments' : '')] != $current) {