mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
417d768c10
git-svn-id: http://svn.automattic.com/wordpress/trunk@8708 1a063a9b-81f0-0310-95a4-ce76da25c4cd
688 lines
20 KiB
PHP
688 lines
20 KiB
PHP
<?php
|
|
/**
|
|
* WordPress Plugin Administration API
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
|
|
/**
|
|
* Parse the plugin contents to retrieve plugin's metadata.
|
|
*
|
|
* The metadata of the plugin's data searches for the following in the plugin's
|
|
* header. All plugin data must be on its own line. For plugin description, it
|
|
* must not have any newlines or only parts of the description will be displayed
|
|
* and the same goes for the plugin data. The below is formatted for printing.
|
|
*
|
|
* <code>
|
|
* /*
|
|
* Plugin Name: Name of Plugin
|
|
* Plugin URI: Link to plugin information
|
|
* Description: Plugin Description
|
|
* Author: Plugin author's name
|
|
* Author URI: Link to the author's web site
|
|
* Version: Must be set in the plugin for WordPress 2.3+
|
|
* Text Domain: Optional. Unique identifier, should be same as the one used in
|
|
* plugin_text_domain()
|
|
* Domain Path: Optional. Only useful if the translations are located in a
|
|
* folder above the plugin's base path. For example, if .mo files are
|
|
* located in the locale folder then Domain Path will be "/locale/" and
|
|
* must have the first slash. Defaults to the base folder the plugin is
|
|
* located in.
|
|
* * / # Remove the space to close comment
|
|
* </code>
|
|
*
|
|
* Plugin data returned array contains the following:
|
|
* 'Name' - Name of the plugin, must be unique.
|
|
* 'Title' - Title of the plugin and the link to the plugin's web site.
|
|
* 'Description' - Description of what the plugin does and/or notes
|
|
* from the author.
|
|
* 'Author' - The author's name
|
|
* 'AuthorURI' - The authors web site address.
|
|
* 'Version' - The plugin version number.
|
|
* 'PluginURI' - Plugin web site address.
|
|
* 'TextDomain' - Plugin's text domain for localization.
|
|
* 'DomainPath' - Plugin's relative directory path to .mo files.
|
|
*
|
|
* Some users have issues with opening large files and manipulating the contents
|
|
* for want is usually the first 1kiB or 2kiB. This function stops pulling in
|
|
* the plugin contents when it has all of the required plugin data.
|
|
*
|
|
* The first 8kiB of the file will be pulled in and if the plugin data is not
|
|
* within that first 8kiB, then the plugin author should correct their plugin
|
|
* and move the plugin data headers to the top.
|
|
*
|
|
* The plugin file is assumed to have permissions to allow for scripts to read
|
|
* the file. This is not checked however and the file is only opened for
|
|
* reading.
|
|
*
|
|
* @link http://trac.wordpress.org/ticket/5651 Previous Optimizations.
|
|
* @link http://trac.wordpress.org/ticket/7372 Further and better Optimizations.
|
|
* @since 1.5.0
|
|
*
|
|
* @param string $plugin_file Path to the plugin file
|
|
* @return array See above for description.
|
|
*/
|
|
function get_plugin_data( $plugin_file ) {
|
|
// We don't need to write to the file, so just open for reading.
|
|
$fp = fopen($plugin_file, 'r');
|
|
|
|
// Pull only the first 8kiB of the file in.
|
|
$plugin_data = fread( $fp, 8192 );
|
|
|
|
// PHP will close file handle, but we are good citizens.
|
|
fclose($fp);
|
|
|
|
preg_match( '|Plugin Name:(.*)$|mi', $plugin_data, $name );
|
|
preg_match( '|Plugin URI:(.*)$|mi', $plugin_data, $uri );
|
|
preg_match( '|Version:(.*)|i', $plugin_data, $version );
|
|
preg_match( '|Description:(.*)$|mi', $plugin_data, $description );
|
|
preg_match( '|Author:(.*)$|mi', $plugin_data, $author_name );
|
|
preg_match( '|Author URI:(.*)$|mi', $plugin_data, $author_uri );
|
|
preg_match( '|Text Domain:(.*)$|mi', $plugin_data, $text_domain );
|
|
preg_match( '|Domain Path:(.*)$|mi', $plugin_data, $domain_path );
|
|
|
|
foreach ( array( 'name', 'uri', 'version', 'description', 'author_name', 'author_uri', 'text_domain', 'domain_path' ) as $field ) {
|
|
if ( !empty( ${$field} ) )
|
|
${$field} = trim(${$field}[1]);
|
|
else
|
|
${$field} = '';
|
|
}
|
|
|
|
return array(
|
|
'Name' => $name, 'PluginURI' => $uri, 'Description' => $description,
|
|
'Author' => $author_name, 'AuthorURI' => $author_uri, 'Version' => $version,
|
|
'TextDomain' => $text_domain, 'DomainPath' => $domain_path
|
|
);
|
|
}
|
|
|
|
function get_plugins($plugin_folder = '') {
|
|
|
|
if ( ! $cache_plugins = wp_cache_get('plugins', 'plugins') )
|
|
$cache_plugins = array();
|
|
|
|
if ( isset($cache_plugins[ $plugin_folder ]) )
|
|
return $cache_plugins[ $plugin_folder ];
|
|
|
|
$wp_plugins = array ();
|
|
$plugin_root = WP_PLUGIN_DIR;
|
|
if( !empty($plugin_folder) )
|
|
$plugin_root .= $plugin_folder;
|
|
|
|
// Files in wp-content/plugins directory
|
|
$plugins_dir = @ opendir( $plugin_root);
|
|
if ( $plugins_dir ) {
|
|
while (($file = readdir( $plugins_dir ) ) !== false ) {
|
|
if ( substr($file, 0, 1) == '.' )
|
|
continue;
|
|
if ( is_dir( $plugin_root.'/'.$file ) ) {
|
|
$plugins_subdir = @ opendir( $plugin_root.'/'.$file );
|
|
if ( $plugins_subdir ) {
|
|
while (($subfile = readdir( $plugins_subdir ) ) !== false ) {
|
|
if ( substr($subfile, 0, 1) == '.' )
|
|
continue;
|
|
if ( substr($subfile, -4) == '.php' )
|
|
$plugin_files[] = "$file/$subfile";
|
|
}
|
|
}
|
|
} else {
|
|
if ( substr($file, -4) == '.php' )
|
|
$plugin_files[] = $file;
|
|
}
|
|
}
|
|
}
|
|
@closedir( $plugins_dir );
|
|
@closedir( $plugins_subdir );
|
|
|
|
if ( !$plugins_dir || !$plugin_files )
|
|
return $wp_plugins;
|
|
|
|
foreach ( $plugin_files as $plugin_file ) {
|
|
if ( !is_readable( "$plugin_root/$plugin_file" ) )
|
|
continue;
|
|
|
|
$plugin_data = get_plugin_data( "$plugin_root/$plugin_file" );
|
|
|
|
if ( empty ( $plugin_data['Name'] ) )
|
|
continue;
|
|
|
|
$wp_plugins[plugin_basename( $plugin_file )] = $plugin_data;
|
|
}
|
|
|
|
uasort( $wp_plugins, create_function( '$a, $b', 'return strnatcasecmp( $a["Name"], $b["Name"] );' ));
|
|
|
|
$cache_plugins[ $plugin_folder ] = $wp_plugins;
|
|
wp_cache_set('plugins', $cache_plugins, 'plugins');
|
|
|
|
return $wp_plugins;
|
|
}
|
|
|
|
/**
|
|
* Check whether the plugin is active by checking the active_plugins list.
|
|
*
|
|
* @since 2.5.0
|
|
*
|
|
* @param string $plugin Base plugin path from plugins directory.
|
|
* @return bool True, if in the active plugins list. False, not in the list.
|
|
*/
|
|
function is_plugin_active($plugin) {
|
|
return in_array($plugin, get_option('active_plugins'));
|
|
}
|
|
|
|
function activate_plugin($plugin, $redirect = '') {
|
|
$current = get_option('active_plugins');
|
|
$plugin = trim($plugin);
|
|
|
|
$valid = validate_plugin($plugin);
|
|
if ( is_wp_error($valid) )
|
|
return $valid;
|
|
|
|
if ( !in_array($plugin, $current) ) {
|
|
if ( !empty($redirect) )
|
|
wp_redirect(add_query_arg('_error_nonce', wp_create_nonce('plugin-activation-error_' . $plugin), $redirect)); // we'll override this later if the plugin can be included without fatal error
|
|
ob_start();
|
|
@include(WP_PLUGIN_DIR . '/' . $plugin);
|
|
$current[] = $plugin;
|
|
sort($current);
|
|
update_option('active_plugins', $current);
|
|
do_action('activate_' . $plugin);
|
|
ob_end_clean();
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
function deactivate_plugins($plugins, $silent= false) {
|
|
$current = get_option('active_plugins');
|
|
|
|
if ( !is_array($plugins) )
|
|
$plugins = array($plugins);
|
|
|
|
foreach ( $plugins as $plugin ) {
|
|
if( ! is_plugin_active($plugin) )
|
|
continue;
|
|
array_splice($current, array_search( $plugin, $current), 1 ); // Fixed Array-fu!
|
|
if ( ! $silent ) //Used by Plugin updater to internally deactivate plugin, however, not to notify plugins of the fact to prevent plugin output.
|
|
do_action('deactivate_' . trim( $plugin ));
|
|
}
|
|
|
|
update_option('active_plugins', $current);
|
|
}
|
|
|
|
function activate_plugins($plugins, $redirect = '') {
|
|
if ( !is_array($plugins) )
|
|
$plugins = array($plugins);
|
|
|
|
$errors = array();
|
|
foreach ( (array) $plugins as $plugin ) {
|
|
if ( !empty($redirect) )
|
|
$redirect = add_query_arg('plugin', $plugin, $redirect);
|
|
$result = activate_plugin($plugin, $redirect);
|
|
if ( is_wp_error($result) )
|
|
$errors[$plugin] = $result;
|
|
}
|
|
|
|
if ( !empty($errors) )
|
|
return new WP_Error('plugins_invalid', __('One of the plugins is invalid.'), $errors);
|
|
|
|
return true;
|
|
}
|
|
|
|
function delete_plugins($plugins, $redirect = '' ) {
|
|
global $wp_filesystem;
|
|
|
|
if( empty($plugins) )
|
|
return false;
|
|
|
|
$checked = array();
|
|
foreach( $plugins as $plugin )
|
|
$checked[] = 'checked[]=' . $plugin;
|
|
|
|
ob_start();
|
|
$url = wp_nonce_url('plugins.php?action=delete-selected&verify-delete=1&' . implode('&', $checked), 'bulk-manage-plugins');
|
|
if ( false === ($credentials = request_filesystem_credentials($url)) ) {
|
|
$data = ob_get_contents();
|
|
ob_end_clean();
|
|
if( ! empty($data) ){
|
|
include_once( ABSPATH . 'wp-admin/admin-header.php');
|
|
echo $data;
|
|
include( ABSPATH . 'wp-admin/admin-footer.php');
|
|
exit;
|
|
}
|
|
return;
|
|
}
|
|
|
|
if ( ! WP_Filesystem($credentials) ) {
|
|
request_filesystem_credentials($url, '', true); //Failed to connect, Error and request again
|
|
$data = ob_get_contents();
|
|
ob_end_clean();
|
|
if( ! empty($data) ){
|
|
include_once( ABSPATH . 'wp-admin/admin-header.php');
|
|
echo $data;
|
|
include( ABSPATH . 'wp-admin/admin-footer.php');
|
|
exit;
|
|
}
|
|
return;
|
|
}
|
|
|
|
if ( $wp_filesystem->errors->get_error_code() ) {
|
|
return $wp_filesystem->errors;
|
|
}
|
|
|
|
if ( ! is_object($wp_filesystem) )
|
|
return new WP_Error('fs_unavailable', __('Could not access filesystem.'));
|
|
|
|
if ( $wp_filesystem->errors->get_error_code() )
|
|
return new WP_Error('fs_error', __('Filesystem error'), $wp_filesystem->errors);
|
|
|
|
//Get the base plugin folder
|
|
$plugins_dir = $wp_filesystem->wp_plugins_dir();
|
|
if ( empty($plugins_dir) )
|
|
return new WP_Error('fs_no_plugins_dir', __('Unable to locate WordPress Plugin directory.'));
|
|
|
|
$plugins_dir = trailingslashit( $plugins_dir );
|
|
|
|
$errors = array();
|
|
|
|
foreach( $plugins as $plugin_file ) {
|
|
// Run Uninstall hook
|
|
if ( is_uninstallable_plugin( $plugin_file ) )
|
|
uninstall_plugin($plugin_file);
|
|
|
|
$this_plugin_dir = trailingslashit( dirname($plugins_dir . $plugin_file) );
|
|
// If plugin is in its own directory, recursively delete the directory.
|
|
if ( strpos($plugin_file, '/') && $this_plugin_dir != $plugins_dir ) //base check on if plugin includes directory seperator AND that its not the root plugin folder
|
|
$deleted = $wp_filesystem->delete($this_plugin_dir, true);
|
|
else
|
|
$deleted = $wp_filesystem->delete($plugins_dir . $plugin_file);
|
|
|
|
if ( ! $deleted )
|
|
$errors[] = $plugin_file;
|
|
}
|
|
|
|
if( ! empty($errors) )
|
|
return new WP_Error('could_not_remove_plugin', sprintf(__('Could not fully remove the plugin(s) %s'), implode(', ', $errors)) );
|
|
|
|
return true;
|
|
}
|
|
|
|
function validate_active_plugins() {
|
|
$check_plugins = get_option('active_plugins');
|
|
|
|
// Sanity check. If the active plugin list is not an array, make it an
|
|
// empty array.
|
|
if ( !is_array($check_plugins) ) {
|
|
update_option('active_plugins', array());
|
|
return;
|
|
}
|
|
|
|
//Invalid is any plugin that is deactivated due to error.
|
|
$invalid = array();
|
|
|
|
// If a plugin file does not exist, remove it from the list of active
|
|
// plugins.
|
|
foreach ( $check_plugins as $check_plugin ) {
|
|
$result = validate_plugin($check_plugin);
|
|
if ( is_wp_error( $result ) ) {
|
|
$invalid[$check_plugin] = $result;
|
|
deactivate_plugins( $check_plugin, true);
|
|
}
|
|
}
|
|
return $invalid;
|
|
}
|
|
|
|
function validate_plugin($plugin) {
|
|
if ( validate_file($plugin) )
|
|
return new WP_Error('plugin_invalid', __('Invalid plugin path.'));
|
|
if ( ! file_exists(WP_PLUGIN_DIR . '/' . $plugin) )
|
|
return new WP_Error('plugin_not_found', __('Plugin file does not exist.'));
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* Whether the plugin can be uninstalled.
|
|
*
|
|
* @since 2.7
|
|
*
|
|
* @param string $plugin Plugin path to check.
|
|
* @return bool Whether plugin can be uninstalled.
|
|
*/
|
|
function is_uninstallable_plugin($plugin) {
|
|
$file = plugin_basename($plugin);
|
|
|
|
$uninstallable_plugins = (array) get_option('uninstall_plugins');
|
|
if ( isset( $uninstallable_plugins[$file] ) || file_exists( WP_PLUGIN_DIR . '/' . dirname($file) . '/uninstall.php' ) )
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Uninstall a single plugin.
|
|
*
|
|
* Calls the uninstall hook, if it is available.
|
|
*
|
|
* @since 2.7
|
|
*
|
|
* @param string $plugin Relative plugin path from Plugin Directory.
|
|
*/
|
|
function uninstall_plugin($plugin) {
|
|
$file = plugin_basename($plugin);
|
|
|
|
$uninstallable_plugins = (array) get_option('uninstall_plugins');
|
|
if ( file_exists( WP_PLUGIN_DIR . '/' . dirname($file) . '/uninstall.php' ) ) {
|
|
if ( isset( $uninstallable_plugins[$file] ) ) {
|
|
unset($uninstallable_plugins[$file]);
|
|
update_option('uninstall_plugins', $uninstallable_plugins);
|
|
}
|
|
unset($uninstallable_plugins);
|
|
|
|
define('WP_UNINSTALL_PLUGIN', $file);
|
|
include WP_PLUGIN_DIR . '/' . dirname($file) . '/uninstall.php';
|
|
|
|
return true;
|
|
}
|
|
|
|
if ( isset( $uninstallable_plugins[$file] ) ) {
|
|
$callable = $uninstallable_plugins[$file];
|
|
unset($uninstallable_plugins[$file]);
|
|
update_option('uninstall_plugins', $uninstallable_plugins);
|
|
unset($uninstallable_plugins);
|
|
|
|
include WP_PLUGIN_DIR . '/' . $file;
|
|
|
|
add_action( 'uninstall_' . $file, $callable );
|
|
do_action( 'uninstall_' . $file );
|
|
}
|
|
}
|
|
|
|
//
|
|
// Menu
|
|
//
|
|
|
|
function add_menu_page( $page_title, $menu_title, $access_level, $file, $function = '' ) {
|
|
global $menu, $admin_page_hooks;
|
|
|
|
$file = plugin_basename( $file );
|
|
|
|
$menu[] = array ( $menu_title, $access_level, $file, $page_title );
|
|
|
|
$admin_page_hooks[$file] = sanitize_title( $menu_title );
|
|
|
|
$hookname = get_plugin_page_hookname( $file, '' );
|
|
if (!empty ( $function ) && !empty ( $hookname ))
|
|
add_action( $hookname, $function );
|
|
|
|
return $hookname;
|
|
}
|
|
|
|
function add_submenu_page( $parent, $page_title, $menu_title, $access_level, $file, $function = '' ) {
|
|
global $submenu;
|
|
global $menu;
|
|
global $_wp_real_parent_file;
|
|
global $_wp_submenu_nopriv;
|
|
|
|
$file = plugin_basename( $file );
|
|
|
|
$parent = plugin_basename( $parent);
|
|
if ( isset( $_wp_real_parent_file[$parent] ) )
|
|
$parent = $_wp_real_parent_file[$parent];
|
|
|
|
if ( !current_user_can( $access_level ) ) {
|
|
$_wp_submenu_nopriv[$parent][$file] = true;
|
|
return false;
|
|
}
|
|
|
|
// If the parent doesn't already have a submenu, add a link to the parent
|
|
// as the first item in the submenu. If the submenu file is the same as the
|
|
// parent file someone is trying to link back to the parent manually. In
|
|
// this case, don't automatically add a link back to avoid duplication.
|
|
if (!isset( $submenu[$parent] ) && $file != $parent ) {
|
|
foreach ( $menu as $parent_menu ) {
|
|
if ( $parent_menu[2] == $parent && current_user_can( $parent_menu[1] ) )
|
|
$submenu[$parent][] = $parent_menu;
|
|
}
|
|
}
|
|
|
|
$submenu[$parent][] = array ( $menu_title, $access_level, $file, $page_title );
|
|
|
|
$hookname = get_plugin_page_hookname( $file, $parent);
|
|
if (!empty ( $function ) && !empty ( $hookname ))
|
|
add_action( $hookname, $function );
|
|
|
|
return $hookname;
|
|
}
|
|
|
|
function add_management_page( $page_title, $menu_title, $access_level, $file, $function = '' ) {
|
|
return add_submenu_page( 'edit.php', $page_title, $menu_title, $access_level, $file, $function );
|
|
}
|
|
|
|
function add_options_page( $page_title, $menu_title, $access_level, $file, $function = '' ) {
|
|
return add_submenu_page( 'options-general.php', $page_title, $menu_title, $access_level, $file, $function );
|
|
}
|
|
|
|
function add_theme_page( $page_title, $menu_title, $access_level, $file, $function = '' ) {
|
|
return add_submenu_page( 'themes.php', $page_title, $menu_title, $access_level, $file, $function );
|
|
}
|
|
|
|
function add_users_page( $page_title, $menu_title, $access_level, $file, $function = '' ) {
|
|
if ( current_user_can('edit_users') )
|
|
$parent = 'users.php';
|
|
else
|
|
$parent = 'profile.php';
|
|
return add_submenu_page( $parent, $page_title, $menu_title, $access_level, $file, $function );
|
|
}
|
|
|
|
//
|
|
// Pluggable Menu Support -- Private
|
|
//
|
|
|
|
function get_admin_page_parent() {
|
|
global $parent_file;
|
|
global $menu;
|
|
global $submenu;
|
|
global $pagenow;
|
|
global $plugin_page;
|
|
global $_wp_real_parent_file;
|
|
global $_wp_menu_nopriv;
|
|
global $_wp_submenu_nopriv;
|
|
|
|
if ( !empty ( $parent_file ) ) {
|
|
if ( isset( $_wp_real_parent_file[$parent_file] ) )
|
|
$parent_file = $_wp_real_parent_file[$parent_file];
|
|
|
|
return $parent_file;
|
|
}
|
|
|
|
if ( $pagenow == 'admin.php' && isset( $plugin_page ) ) {
|
|
foreach ( $menu as $parent_menu ) {
|
|
if ( $parent_menu[2] == $plugin_page ) {
|
|
$parent_file = $plugin_page;
|
|
if ( isset( $_wp_real_parent_file[$parent_file] ) )
|
|
$parent_file = $_wp_real_parent_file[$parent_file];
|
|
return $parent_file;
|
|
}
|
|
}
|
|
if ( isset( $_wp_menu_nopriv[$plugin_page] ) ) {
|
|
$parent_file = $plugin_page;
|
|
if ( isset( $_wp_real_parent_file[$parent_file] ) )
|
|
$parent_file = $_wp_real_parent_file[$parent_file];
|
|
return $parent_file;
|
|
}
|
|
}
|
|
|
|
if ( isset( $plugin_page ) && isset( $_wp_submenu_nopriv[$pagenow][$plugin_page] ) ) {
|
|
$parent_file = $pagenow;
|
|
if ( isset( $_wp_real_parent_file[$parent_file] ) )
|
|
$parent_file = $_wp_real_parent_file[$parent_file];
|
|
return $parent_file;
|
|
}
|
|
|
|
foreach (array_keys( $submenu ) as $parent) {
|
|
foreach ( $submenu[$parent] as $submenu_array ) {
|
|
if ( isset( $_wp_real_parent_file[$parent] ) )
|
|
$parent = $_wp_real_parent_file[$parent];
|
|
if ( $submenu_array[2] == $pagenow ) {
|
|
$parent_file = $parent;
|
|
return $parent;
|
|
} else
|
|
if ( isset( $plugin_page ) && ($plugin_page == $submenu_array[2] ) ) {
|
|
$parent_file = $parent;
|
|
return $parent;
|
|
}
|
|
}
|
|
}
|
|
|
|
$parent_file = '';
|
|
return '';
|
|
}
|
|
|
|
function get_admin_page_title() {
|
|
global $title;
|
|
global $menu;
|
|
global $submenu;
|
|
global $pagenow;
|
|
global $plugin_page;
|
|
|
|
if ( isset( $title ) && !empty ( $title ) ) {
|
|
return $title;
|
|
}
|
|
|
|
$hook = get_plugin_page_hook( $plugin_page, $pagenow );
|
|
|
|
$parent = $parent1 = get_admin_page_parent();
|
|
if ( empty ( $parent) ) {
|
|
foreach ( $menu as $menu_array ) {
|
|
if ( isset( $menu_array[3] ) ) {
|
|
if ( $menu_array[2] == $pagenow ) {
|
|
$title = $menu_array[3];
|
|
return $menu_array[3];
|
|
} else
|
|
if ( isset( $plugin_page ) && ($plugin_page == $menu_array[2] ) && ($hook == $menu_array[3] ) ) {
|
|
$title = $menu_array[3];
|
|
return $menu_array[3];
|
|
}
|
|
} else {
|
|
$title = $menu_array[0];
|
|
return $title;
|
|
}
|
|
}
|
|
} else {
|
|
foreach (array_keys( $submenu ) as $parent) {
|
|
foreach ( $submenu[$parent] as $submenu_array ) {
|
|
if ( isset( $plugin_page ) &&
|
|
($plugin_page == $submenu_array[2] ) &&
|
|
(($parent == $pagenow ) || ($parent == $plugin_page ) || ($plugin_page == $hook ) || (($pagenow == 'admin.php' ) && ($parent1 != $submenu_array[2] ) ) )
|
|
) {
|
|
$title = $submenu_array[3];
|
|
return $submenu_array[3];
|
|
}
|
|
|
|
if ( $submenu_array[2] != $pagenow || isset( $_GET['page'] ) ) // not the current page
|
|
continue;
|
|
|
|
if ( isset( $submenu_array[3] ) ) {
|
|
$title = $submenu_array[3];
|
|
return $submenu_array[3];
|
|
} else {
|
|
$title = $submenu_array[0];
|
|
return $title;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return $title;
|
|
}
|
|
|
|
function get_plugin_page_hook( $plugin_page, $parent_page ) {
|
|
$hook = get_plugin_page_hookname( $plugin_page, $parent_page );
|
|
if ( has_action($hook) )
|
|
return $hook;
|
|
else
|
|
return null;
|
|
}
|
|
|
|
function get_plugin_page_hookname( $plugin_page, $parent_page ) {
|
|
global $admin_page_hooks;
|
|
|
|
$parent = get_admin_page_parent();
|
|
|
|
$page_type = 'admin';
|
|
if ( empty ( $parent_page ) || 'admin.php' == $parent_page ) {
|
|
if ( isset( $admin_page_hooks[$plugin_page] ))
|
|
$page_type = 'toplevel';
|
|
else
|
|
if ( isset( $admin_page_hooks[$parent] ))
|
|
$page_type = $admin_page_hooks[$parent];
|
|
} else if ( isset( $admin_page_hooks[$parent] ) ) {
|
|
$page_type = $admin_page_hooks[$parent];
|
|
}
|
|
|
|
$plugin_name = preg_replace( '!\.php!', '', $plugin_page );
|
|
|
|
return $page_type.'_page_'.$plugin_name;
|
|
}
|
|
|
|
function user_can_access_admin_page() {
|
|
global $pagenow;
|
|
global $menu;
|
|
global $submenu;
|
|
global $_wp_menu_nopriv;
|
|
global $_wp_submenu_nopriv;
|
|
global $plugin_page;
|
|
|
|
$parent = get_admin_page_parent();
|
|
|
|
if ( isset( $_wp_submenu_nopriv[$parent][$pagenow] ) )
|
|
return false;
|
|
|
|
if ( isset( $plugin_page ) && isset( $_wp_submenu_nopriv[$parent][$plugin_page] ) )
|
|
return false;
|
|
|
|
if ( empty( $parent) ) {
|
|
if ( isset( $_wp_menu_nopriv[$pagenow] ) )
|
|
return false;
|
|
if ( isset( $_wp_submenu_nopriv[$pagenow][$pagenow] ) )
|
|
return false;
|
|
if ( isset( $plugin_page ) && isset( $_wp_submenu_nopriv[$pagenow][$plugin_page] ) )
|
|
return false;
|
|
foreach (array_keys( $_wp_submenu_nopriv ) as $key ) {
|
|
if ( isset( $_wp_submenu_nopriv[$key][$pagenow] ) )
|
|
return false;
|
|
if ( isset( $plugin_page ) && isset( $_wp_submenu_nopriv[$key][$plugin_page] ) )
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
if ( isset( $submenu[$parent] ) ) {
|
|
foreach ( $submenu[$parent] as $submenu_array ) {
|
|
if ( isset( $plugin_page ) && ( $submenu_array[2] == $plugin_page ) ) {
|
|
if ( current_user_can( $submenu_array[1] ))
|
|
return true;
|
|
else
|
|
return false;
|
|
} else if ( $submenu_array[2] == $pagenow ) {
|
|
if ( current_user_can( $submenu_array[1] ))
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach ( $menu as $menu_array ) {
|
|
if ( $menu_array[2] == $parent) {
|
|
if ( current_user_can( $menu_array[1] ))
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
?>
|