mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
f88409ae82
git-svn-id: http://svn.automattic.com/wordpress/trunk@211 1a063a9b-81f0-0310-95a4-ce76da25c4cd
26 lines
877 B
PHP
26 lines
877 B
PHP
<h1 id="wphead"><a href="http://wordpress.org" rel="external"><span>WordPress</span></a></h1>
|
|
<ul id="adminmenu">
|
|
<?php
|
|
$menu = file("./b2menutop.txt");
|
|
$continue = true;
|
|
foreach ($menu as $item) {
|
|
$class = '';
|
|
$item = trim($item);
|
|
if ('***' == $item) $continue = false;
|
|
if ($continue) {
|
|
$item = explode("\t", $item);
|
|
// 0 = user level, 1 = file, 2 = name
|
|
if (substr($PHP_SELF, -6) == substr($item[1], -6)) $class = ' id="current"';
|
|
if ($user_level >= $item[0]) echo "\n\t<li><a href='{$item[1]}'$class>{$item[2]}</a></li>";
|
|
}
|
|
}
|
|
|
|
?>
|
|
|
|
<li><a href="javascript:profile(<?php echo $user_ID ?>)">My Profile</a></li>
|
|
<li><a href="<?php echo "$siteurl/$blogfilename"; ?>">View site</a></li>
|
|
<li id="last"><a href="<?php echo $siteurl ?>/b2login.php?action=logout">Logout (<?php echo $user_nickname ?>)</a></li>
|
|
</ul>
|
|
<br clear="all" />
|
|
|
|
<h2><?php echo $title; ?></h2>
|