📄 navbox.php
字号:
<?PHP
/*
EasyCMS navigation include, creates the links and highlights the
current page.
(c) Christian Heilmann
*/
$files=explode(',','index.php,edit_settings.php,edit_navigation.php,upload.php,generatepage.php,help.php');
$names=explode(',',untag($display,'navigationitems',0));
$self=preg_replace('/.*?\//','',$self);
$menu.='<div>';
$menu.='<img src="logo.gif" width="273" height="70" alt="EasyCMS logo" border="0">';
$menu.='<div id="textlinks">';
foreach($files as $i=>$f){
$menu.=strstr($self,$f)?'<strong><a href="'.$f.'">'.$names[$i].'</a></strong>':'<a href="'.$f.'">'.$names[$i].'</a>';
$menu.=$i==count($files)-1?'':' | ';
}
$menu.='</div>';
$menu.='</div>';
return $menu;
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -