navbox.php

来自「easycms to learn easy php and see how to」· PHP 代码 · 共 22 行

PHP
22
字号
<?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?'':'&nbsp;|&nbsp;';
		}
		$menu.='</div>';
	$menu.='</div>';
	return $menu;
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?