2004-10-19 05:03:06 +02:00
|
|
|
<?php
|
2008-08-14 08:30:38 +02:00
|
|
|
/**
|
|
|
|
* Displays Administration Menu.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The current page.
|
|
|
|
*
|
|
|
|
* @global string $self
|
|
|
|
* @name $self
|
|
|
|
* @var string
|
|
|
|
*/
|
2004-10-19 05:03:06 +02:00
|
|
|
$self = preg_replace('|^.*/wp-admin/|i', '', $_SERVER['PHP_SELF']);
|
|
|
|
$self = preg_replace('|^.*/plugins/|i', '', $self);
|
|
|
|
|
2008-06-04 20:09:31 +02:00
|
|
|
global $menu, $submenu, $parent_file; //For when admin-header is included from within a function.
|
|
|
|
|
2006-11-18 08:31:29 +01:00
|
|
|
get_admin_page_parent();
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2008-10-10 20:21:16 +02:00
|
|
|
/**
|
|
|
|
* Display menu.
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @since 2.7.0
|
|
|
|
*
|
|
|
|
* @param array $menu
|
|
|
|
* @param array $submenu
|
|
|
|
* @param bool $submenu_as_parent
|
|
|
|
*/
|
2008-08-20 23:42:31 +02:00
|
|
|
function _wp_menu_output( &$menu, &$submenu, $submenu_as_parent = true ) {
|
2008-08-25 02:21:38 +02:00
|
|
|
global $self, $parent_file, $submenu_file, $plugin_page, $pagenow;
|
2008-08-20 23:42:31 +02:00
|
|
|
|
|
|
|
$first = true;
|
2008-10-24 00:19:19 +02:00
|
|
|
// 0 = name, 1 = capability, 2 = file, 3 = class, 4 = id, 5 = icon src
|
2008-08-20 23:42:31 +02:00
|
|
|
foreach ( $menu as $key => $item ) {
|
2008-10-25 00:40:19 +02:00
|
|
|
$admin_is_parent = false;
|
2008-08-20 23:42:31 +02:00
|
|
|
$class = array();
|
|
|
|
if ( $first ) {
|
|
|
|
$class[] = 'wp-first-item';
|
|
|
|
$first = false;
|
|
|
|
}
|
|
|
|
if ( !empty($submenu[$item[2]]) )
|
|
|
|
$class[] = 'wp-has-submenu';
|
|
|
|
|
|
|
|
if ( ( $parent_file && $item[2] == $parent_file ) || strcmp($self, $item[2]) == 0 ) {
|
|
|
|
if ( !empty($submenu[$item[2]]) )
|
|
|
|
$class[] = 'wp-has-current-submenu wp-menu-open';
|
|
|
|
else
|
|
|
|
$class[] = 'current';
|
|
|
|
}
|
|
|
|
|
2008-10-15 00:44:56 +02:00
|
|
|
if ( isset($item[4]) && ! empty($item[4]) )
|
|
|
|
$class[] = $item[4];
|
2008-08-20 23:42:31 +02:00
|
|
|
|
|
|
|
$class = $class ? ' class="' . join( ' ', $class ) . '"' : '';
|
2008-10-15 00:44:56 +02:00
|
|
|
$id = isset($item[5]) && ! empty($item[5]) ? ' id="' . $item[5] . '"' : '';
|
|
|
|
$img = isset($item[6]) && ! empty($item[6]) ? '<img class="wp-menu-image" src="' . $item[6] . '" alt="" />' : '';
|
2008-10-24 00:19:19 +02:00
|
|
|
$toggle = '<div class="wp-menu-toggle"><br /></div>';
|
2008-08-20 23:42:31 +02:00
|
|
|
|
2008-10-14 07:10:16 +02:00
|
|
|
echo "\n\t<li$class$id>";
|
2008-08-20 23:42:31 +02:00
|
|
|
|
2008-10-14 07:10:16 +02:00
|
|
|
if ( false !== strpos($class, 'wp-menu-separator') ) {
|
|
|
|
echo '<br />';
|
|
|
|
} elseif ( $submenu_as_parent && !empty($submenu[$item[2]]) ) {
|
2008-08-20 23:42:31 +02:00
|
|
|
$submenu[$item[2]] = array_values($submenu[$item[2]]); // Re-index.
|
|
|
|
$menu_hook = get_plugin_page_hook($submenu[$item[2]][0][2], $item[2]);
|
2008-10-25 00:40:19 +02:00
|
|
|
if ( file_exists(WP_PLUGIN_DIR . "/{$submenu[$item[2]][0][2]}") || !empty($menu_hook)) {
|
|
|
|
$admin_is_parent = true;
|
2008-10-24 00:19:19 +02:00
|
|
|
echo "$img$toggle<a href='admin.php?page={$submenu[$item[2]][0][2]}'$class>{$item[0]}</a>";
|
2008-10-25 00:40:19 +02:00
|
|
|
} else {
|
2008-10-24 00:19:19 +02:00
|
|
|
echo "\n\t$img$toggle<a href='{$submenu[$item[2]][0][2]}'$class>{$item[0]}</a>";
|
2008-10-25 00:40:19 +02:00
|
|
|
}
|
2008-08-20 23:42:31 +02:00
|
|
|
} else if ( current_user_can($item[1]) ) {
|
|
|
|
$menu_hook = get_plugin_page_hook($item[2], 'admin.php');
|
2008-10-14 07:10:16 +02:00
|
|
|
if ( file_exists(WP_PLUGIN_DIR . "/{$item[2]}") || !empty($menu_hook) ) {
|
2008-10-25 00:40:19 +02:00
|
|
|
$admin_is_parent = true;
|
2008-10-24 00:19:19 +02:00
|
|
|
echo "\n\t$img$toggle<a href='admin.php?page={$item[2]}'$class>{$item[0]}</a>";
|
2008-10-14 07:10:16 +02:00
|
|
|
} else {
|
2008-10-24 00:19:19 +02:00
|
|
|
echo "\n\t$img$toggle<a href='{$item[2]}'$class>{$item[0]}</a>";
|
2008-10-14 07:10:16 +02:00
|
|
|
}
|
2008-08-20 23:42:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( !empty($submenu[$item[2]]) ) {
|
2008-10-16 12:32:26 +02:00
|
|
|
echo "\n\t<ul class='wp-submenu'><li class='wp-submenu-head' style='display:none;'>{$item[0]}</li>";
|
2008-08-20 23:42:31 +02:00
|
|
|
$first = true;
|
|
|
|
foreach ( $submenu[$item[2]] as $sub_key => $sub_item ) {
|
|
|
|
if ( !current_user_can($sub_item[1]) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$class = array();
|
|
|
|
if ( $first ) {
|
|
|
|
$class[] = 'wp-first-item';
|
|
|
|
$first = false;
|
|
|
|
}
|
|
|
|
if ( isset($submenu_file) ) {
|
|
|
|
if ( $submenu_file == $sub_item[2] )
|
|
|
|
$class[] = 'current';
|
2008-10-22 22:57:37 +02:00
|
|
|
// If plugin_page is set the parent must either match the current page or not physically exist.
|
|
|
|
// This allows plugin pages with the same hook to exist under different parents.
|
|
|
|
} else if ( (isset($plugin_page) && $plugin_page == $sub_item[2] && (!file_exists($item[2]) || ($item[2] == $self))) || (!isset($plugin_page) && $self == $sub_item[2]) ) {
|
2008-08-20 23:42:31 +02:00
|
|
|
$class[] = 'current';
|
|
|
|
}
|
|
|
|
|
|
|
|
$class = $class ? ' class="' . join( ' ', $class ) . '"' : '';
|
|
|
|
|
|
|
|
$menu_hook = get_plugin_page_hook($sub_item[2], $item[2]);
|
|
|
|
|
|
|
|
if ( file_exists(WP_PLUGIN_DIR . "/{$sub_item[2]}") || ! empty($menu_hook) ) {
|
2008-10-22 22:33:59 +02:00
|
|
|
// If admin.php is the current page or if the parent exists as a file in the plugins or admin dir
|
2008-10-25 00:40:19 +02:00
|
|
|
$parent_exists = (!$admin_is_parent && file_exists(WP_PLUGIN_DIR . "/{$item[2]}") && !is_dir(WP_PLUGIN_DIR . "/{$item[2]}") ) || file_exists($item[2]);
|
2008-10-22 22:42:57 +02:00
|
|
|
if ( $parent_exists )
|
|
|
|
echo "<li$class><a href='{$item[2]}?page={$sub_item[2]}'$class>{$sub_item[0]}</a></li>";
|
|
|
|
elseif ( 'admin.php' == $pagenow || !$parent_exists )
|
2008-10-14 07:10:16 +02:00
|
|
|
echo "<li$class><a href='admin.php?page={$sub_item[2]}'$class>{$sub_item[0]}</a></li>";
|
2008-08-20 23:42:31 +02:00
|
|
|
else
|
2008-10-14 07:10:16 +02:00
|
|
|
echo "<li$class><a href='{$item[2]}?page={$sub_item[2]}'$class>{$sub_item[0]}</a></li>";
|
2008-08-20 23:42:31 +02:00
|
|
|
} else {
|
2008-10-14 07:10:16 +02:00
|
|
|
echo "<li$class><a href='{$sub_item[2]}'$class>{$sub_item[0]}</a></li>";
|
2008-08-20 23:42:31 +02:00
|
|
|
}
|
|
|
|
}
|
2008-10-14 07:10:16 +02:00
|
|
|
echo "</ul>";
|
2008-08-20 23:42:31 +02:00
|
|
|
}
|
|
|
|
echo "</li>";
|
2008-01-04 12:47:06 +01:00
|
|
|
}
|
|
|
|
}
|
2008-08-20 23:42:31 +02:00
|
|
|
|
2008-01-04 12:47:06 +01:00
|
|
|
?>
|
|
|
|
|
2008-10-27 02:22:24 +01:00
|
|
|
<ul id="adminmenu">
|
2008-08-20 23:42:31 +02:00
|
|
|
|
2004-10-19 05:03:06 +02:00
|
|
|
<?php
|
2008-08-20 23:42:31 +02:00
|
|
|
|
|
|
|
_wp_menu_output( $menu, $submenu );
|
|
|
|
do_action( 'adminmenu' );
|
|
|
|
|
2004-10-19 05:03:06 +02:00
|
|
|
?>
|
2008-10-15 00:44:56 +02:00
|
|
|
</ul>
|