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);
|
2010-01-12 22:11:52 +01:00
|
|
|
$self = preg_replace('|^.*/mu-plugins/|i', '', $self);
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2008-06-04 20:09:31 +02:00
|
|
|
global $menu, $submenu, $parent_file; //For when admin-header is included from within a function.
|
2010-01-15 23:11:12 +01:00
|
|
|
$parent_file = apply_filters("parent_file", $parent_file); // For plugins to move submenu tabs around.
|
2008-06-04 20:09:31 +02:00
|
|
|
|
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-11-10 22:50:31 +01:00
|
|
|
function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) {
|
2010-03-04 01:15:55 +01:00
|
|
|
global $self, $parent_file, $submenu_file, $plugin_page, $pagenow, $typenow;
|
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';
|
|
|
|
|
2010-03-04 01:15:55 +01:00
|
|
|
if ( ( $parent_file && $item[2] == $parent_file ) || ( false === strpos($parent_file, '?') && $self == $item[2] ) ) {
|
2008-08-20 23:42:31 +02:00
|
|
|
if ( !empty($submenu[$item[2]]) )
|
|
|
|
$class[] = 'wp-has-current-submenu wp-menu-open';
|
|
|
|
else
|
|
|
|
$class[] = 'current';
|
|
|
|
}
|
|
|
|
|
2010-03-19 22:29:21 +01:00
|
|
|
if ( ! empty($item[4]) )
|
2008-10-15 00:44:56 +02:00
|
|
|
$class[] = $item[4];
|
2008-08-20 23:42:31 +02:00
|
|
|
|
|
|
|
$class = $class ? ' class="' . join( ' ', $class ) . '"' : '';
|
2008-11-19 13:02:28 +01:00
|
|
|
$tabindex = ' tabindex="1"';
|
2010-03-19 22:29:21 +01:00
|
|
|
$id = ! empty($item[5]) ? ' id="' . preg_replace( '|[^a-zA-Z0-9_:.]|', '-', $item[5] ) . '"' : '';
|
2008-11-09 15:54:39 +01:00
|
|
|
$img = '';
|
2010-03-19 22:29:21 +01:00
|
|
|
if ( ! empty($item[6]) ) {
|
2008-11-09 15:54:39 +01:00
|
|
|
if ( 'div' === $item[6] )
|
2009-04-29 07:43:03 +02:00
|
|
|
$img = '<br />';
|
2008-11-09 15:54:39 +01:00
|
|
|
else
|
2009-04-29 07:43:03 +02:00
|
|
|
$img = '<img src="' . $item[6] . '" alt="" />';
|
2008-11-09 15:54:39 +01:00
|
|
|
}
|
2008-10-24 00:19:19 +02:00
|
|
|
$toggle = '<div class="wp-menu-toggle"><br /></div>';
|
2008-08-20 23:42:31 +02:00
|
|
|
|
2010-04-18 05:38:47 +02:00
|
|
|
$title = wptexturize($item[0]);
|
|
|
|
|
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') ) {
|
2009-04-29 07:43:03 +02:00
|
|
|
echo '<a class="separator" href="?unfoldmenu=1"><br /></a>';
|
2008-10-14 07:10:16 +02:00
|
|
|
} 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]);
|
2009-06-16 19:11:53 +02:00
|
|
|
$menu_file = $submenu[$item[2]][0][2];
|
|
|
|
if ( false !== $pos = strpos($menu_file, '?') )
|
|
|
|
$menu_file = substr($menu_file, 0, $pos);
|
|
|
|
if ( ( ('index.php' != $submenu[$item[2]][0][2]) && file_exists(WP_PLUGIN_DIR . "/$menu_file") ) || !empty($menu_hook)) {
|
2008-10-25 00:40:19 +02:00
|
|
|
$admin_is_parent = true;
|
2010-04-18 05:38:47 +02:00
|
|
|
echo "<div class='wp-menu-image'><a href='admin.php?page={$submenu[$item[2]][0][2]}'>$img</a></div>$toggle<a href='admin.php?page={$submenu[$item[2]][0][2]}'$class$tabindex>$title</a>";
|
2008-10-25 00:40:19 +02:00
|
|
|
} else {
|
2010-04-18 05:38:47 +02:00
|
|
|
echo "\n\t<div class='wp-menu-image'><a href='{$submenu[$item[2]][0][2]}'>$img</a></div>$toggle<a href='{$submenu[$item[2]][0][2]}'$class$tabindex>$title</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');
|
2009-06-16 19:11:53 +02:00
|
|
|
$menu_file = $item[2];
|
|
|
|
if ( false !== $pos = strpos($menu_file, '?') )
|
|
|
|
$menu_file = substr($menu_file, 0, $pos);
|
|
|
|
if ( ('index.php' != $item[2]) && file_exists(WP_PLUGIN_DIR . "/$menu_file") || !empty($menu_hook) ) {
|
2008-10-25 00:40:19 +02:00
|
|
|
$admin_is_parent = true;
|
2009-04-29 07:43:03 +02:00
|
|
|
echo "\n\t<div class='wp-menu-image'><a href='admin.php?page={$item[2]}'>$img</a></div>$toggle<a href='admin.php?page={$item[2]}'$class$tabindex>{$item[0]}</a>";
|
2008-10-14 07:10:16 +02:00
|
|
|
} else {
|
2009-04-29 07:43:03 +02:00
|
|
|
echo "\n\t<div class='wp-menu-image'><a href='{$item[2]}'>$img</a></div>$toggle<a href='{$item[2]}'$class$tabindex>{$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-11-09 15:54:39 +01:00
|
|
|
echo "\n\t<div class='wp-submenu'><div class='wp-submenu-head'>{$item[0]}</div><ul>";
|
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;
|
|
|
|
}
|
2009-06-16 19:11:53 +02:00
|
|
|
|
|
|
|
$menu_file = $item[2];
|
2010-03-04 01:15:55 +01:00
|
|
|
|
2009-06-16 19:11:53 +02:00
|
|
|
if ( false !== $pos = strpos($menu_file, '?') )
|
|
|
|
$menu_file = substr($menu_file, 0, $pos);
|
|
|
|
|
2010-03-04 01:15:55 +01:00
|
|
|
// Handle current for post_type=post|page|foo pages, which won't match $self.
|
|
|
|
if ( !empty($typenow) )
|
|
|
|
$self_type = $self . '?post_type=' . $typenow;
|
|
|
|
else
|
|
|
|
$self_type = 'nothing';
|
|
|
|
|
2008-08-20 23:42:31 +02:00
|
|
|
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.
|
2010-03-04 01:15:55 +01:00
|
|
|
} else if ( (isset($plugin_page) && $plugin_page == $sub_item[2] && (!file_exists($menu_file) || ($item[2] == $self) || ($item[2] == $self_type))) || (!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]);
|
2009-06-16 19:11:53 +02:00
|
|
|
$sub_file = $sub_item[2];
|
|
|
|
if ( false !== $pos = strpos($sub_file, '?') )
|
|
|
|
$sub_file = substr($sub_file, 0, $pos);
|
2008-08-20 23:42:31 +02:00
|
|
|
|
2010-04-18 05:38:47 +02:00
|
|
|
$title = wptexturize($sub_item[0]);
|
|
|
|
|
2009-06-16 19:11:53 +02:00
|
|
|
if ( ( ('index.php' != $sub_item[2]) && file_exists(WP_PLUGIN_DIR . "/$sub_file") ) || ! 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
|
2010-03-04 01:15:55 +01:00
|
|
|
if ( (!$admin_is_parent && file_exists(WP_PLUGIN_DIR . "/$menu_file") && !is_dir(WP_PLUGIN_DIR . "/{$item[2]}")) || file_exists($menu_file) )
|
|
|
|
$sub_item_url = add_query_arg( array('page' => $sub_item[2]), $item[2] );
|
2008-08-20 23:42:31 +02:00
|
|
|
else
|
2010-03-04 01:15:55 +01:00
|
|
|
$sub_item_url = add_query_arg( array('page' => $sub_item[2]), 'admin.php' );
|
2010-03-28 03:32:35 +02:00
|
|
|
$sub_item_url = esc_url($sub_item_url);
|
2010-04-18 05:38:47 +02:00
|
|
|
echo "<li$class><a href='$sub_item_url'$class$tabindex>$title</a></li>";
|
2008-08-20 23:42:31 +02:00
|
|
|
} else {
|
2010-04-18 05:38:47 +02:00
|
|
|
echo "<li$class><a href='{$sub_item[2]}'$class$tabindex>$title</a></li>";
|
2008-08-20 23:42:31 +02:00
|
|
|
}
|
|
|
|
}
|
2008-11-09 15:54:39 +01:00
|
|
|
echo "</ul></div>";
|
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
|
|
|
?>
|
2009-04-29 07:43:03 +02:00
|
|
|
</ul>
|