2004-10-19 05:03:06 +02:00
|
|
|
<?php
|
2008-08-11 22:26:31 +02:00
|
|
|
/**
|
|
|
|
* WordPress Administration Bootstrap
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* In WordPress Administration Panels
|
|
|
|
*
|
|
|
|
* @since unknown
|
|
|
|
*/
|
2010-10-07 21:34:18 +02:00
|
|
|
if ( ! defined('WP_ADMIN') )
|
2009-04-22 14:24:45 +02:00
|
|
|
define('WP_ADMIN', TRUE);
|
2007-12-19 18:56:16 +01:00
|
|
|
|
2010-10-07 21:34:18 +02:00
|
|
|
if ( ! defined('WP_NETWORK_ADMIN') )
|
2010-07-30 22:34:54 +02:00
|
|
|
define('WP_NETWORK_ADMIN', FALSE);
|
2010-10-07 21:34:18 +02:00
|
|
|
|
|
|
|
if ( ! defined('WP_USER_ADMIN') )
|
|
|
|
define('WP_USER_ADMIN', FALSE);
|
|
|
|
|
|
|
|
if ( ! WP_NETWORK_ADMIN && ! WP_USER_ADMIN ) {
|
2010-09-02 17:03:39 +02:00
|
|
|
define('WP_BLOG_ADMIN', TRUE);
|
|
|
|
}
|
2010-07-30 22:34:54 +02:00
|
|
|
|
2010-05-20 21:20:25 +02:00
|
|
|
if ( isset($_GET['import']) && !defined('WP_LOAD_IMPORTERS') )
|
|
|
|
define('WP_LOAD_IMPORTERS', true);
|
|
|
|
|
2009-12-30 11:15:10 +01:00
|
|
|
require_once(dirname(dirname(__FILE__)) . '/wp-load.php');
|
2005-11-21 10:11:19 +01:00
|
|
|
|
2009-04-22 01:12:57 +02:00
|
|
|
if ( get_option('db_upgraded') ) {
|
2009-02-09 20:19:38 +01:00
|
|
|
$wp_rewrite->flush_rules();
|
2009-04-22 01:12:57 +02:00
|
|
|
update_option( 'db_upgraded', false );
|
2009-02-09 20:19:38 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Runs on the next page load after successful upgrade
|
|
|
|
*
|
|
|
|
* @since 2.8
|
|
|
|
*/
|
|
|
|
do_action('after_db_upgrade');
|
|
|
|
} elseif ( get_option('db_version') != $wp_db_version ) {
|
2010-01-12 22:11:52 +01:00
|
|
|
if ( !is_multisite() ) {
|
|
|
|
wp_redirect(admin_url('upgrade.php?_wp_http_referer=' . urlencode(stripslashes($_SERVER['REQUEST_URI']))));
|
|
|
|
exit;
|
|
|
|
} elseif ( apply_filters( 'do_mu_upgrade', true ) ) {
|
|
|
|
/**
|
2010-01-15 23:11:12 +01:00
|
|
|
* On really small MU installs run the upgrader every time,
|
2010-01-12 22:11:52 +01:00
|
|
|
* else run it less often to reduce load.
|
|
|
|
*
|
|
|
|
* @since 2.8.4b
|
|
|
|
*/
|
|
|
|
$c = get_blog_count();
|
|
|
|
if ( $c <= 50 || ( $c > 50 && mt_rand( 0, (int)( $c / 50 ) ) == 1 ) ) {
|
|
|
|
require_once( ABSPATH . WPINC . '/http.php' );
|
|
|
|
$response = wp_remote_get( admin_url( 'upgrade.php?step=1' ), array( 'timeout' => 120, 'httpversion' => '1.1' ) );
|
|
|
|
do_action( 'after_mu_upgrade', $response );
|
2010-01-26 19:16:53 +01:00
|
|
|
unset($response);
|
2010-01-12 22:11:52 +01:00
|
|
|
}
|
2010-01-26 19:16:53 +01:00
|
|
|
unset($c);
|
2010-01-12 22:11:52 +01:00
|
|
|
}
|
2007-02-15 09:16:43 +01:00
|
|
|
}
|
|
|
|
|
2007-05-25 09:16:21 +02:00
|
|
|
require_once(ABSPATH . 'wp-admin/includes/admin.php');
|
2005-09-14 02:03:02 +02:00
|
|
|
|
2004-12-14 04:00:55 +01:00
|
|
|
auth_redirect();
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2005-06-09 02:17:43 +02:00
|
|
|
nocache_headers();
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2005-03-31 07:25:54 +02:00
|
|
|
update_category_cache();
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2009-10-27 19:13:42 +01:00
|
|
|
// Schedule trash collection
|
|
|
|
if ( !wp_next_scheduled('wp_scheduled_delete') && !defined('WP_INSTALLING') )
|
|
|
|
wp_schedule_event(time(), 'daily', 'wp_scheduled_delete');
|
|
|
|
|
2009-04-17 14:55:03 +02:00
|
|
|
set_screen_options();
|
2009-04-17 14:46:53 +02:00
|
|
|
|
2006-08-30 23:46:31 +02:00
|
|
|
$date_format = get_option('date_format');
|
|
|
|
$time_format = get_option('time_format');
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2009-10-14 07:53:49 +02:00
|
|
|
wp_reset_vars(array('profile', 'redirect', 'redirect_url', 'a', 'text', 'trackback', 'pingback'));
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2008-01-09 13:12:35 +01:00
|
|
|
wp_enqueue_script( 'common' );
|
|
|
|
wp_enqueue_script( 'jquery-color' );
|
2006-05-22 19:16:05 +02:00
|
|
|
|
|
|
|
$editing = false;
|
2006-01-10 06:16:17 +01:00
|
|
|
|
2010-03-04 01:15:55 +01:00
|
|
|
if ( isset($_GET['page']) ) {
|
2005-11-18 00:01:28 +01:00
|
|
|
$plugin_page = stripslashes($_GET['page']);
|
2005-12-22 04:06:04 +01:00
|
|
|
$plugin_page = plugin_basename($plugin_page);
|
2006-07-27 00:18:36 +02:00
|
|
|
}
|
|
|
|
|
2010-03-04 01:15:55 +01:00
|
|
|
if ( isset($_GET['post_type']) )
|
2010-06-08 17:34:42 +02:00
|
|
|
$typenow = sanitize_key($_GET['post_type']);
|
2010-03-04 01:15:55 +01:00
|
|
|
else
|
|
|
|
$typenow = '';
|
|
|
|
|
2010-06-08 17:34:42 +02:00
|
|
|
if ( isset($_GET['taxonomy']) )
|
|
|
|
$taxnow = sanitize_key($_GET['taxonomy']);
|
|
|
|
else
|
|
|
|
$taxnow = '';
|
|
|
|
|
2010-07-30 22:34:54 +02:00
|
|
|
if ( WP_NETWORK_ADMIN )
|
|
|
|
require(ABSPATH . 'wp-admin/network/menu.php');
|
2010-10-07 21:34:18 +02:00
|
|
|
elseif ( WP_USER_ADMIN )
|
|
|
|
require(ABSPATH . 'wp-admin/user/menu.php');
|
2010-07-30 22:34:54 +02:00
|
|
|
else
|
|
|
|
require(ABSPATH . 'wp-admin/menu.php');
|
2006-07-27 00:18:36 +02:00
|
|
|
|
2010-05-06 23:36:55 +02:00
|
|
|
if ( current_user_can( 'manage_options' ) )
|
|
|
|
@ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', '256M' ) );
|
|
|
|
|
2008-02-19 21:24:50 +01:00
|
|
|
do_action('admin_init');
|
|
|
|
|
2010-03-04 01:15:55 +01:00
|
|
|
if ( isset($plugin_page) ) {
|
|
|
|
if ( !empty($typenow) )
|
|
|
|
$the_parent = $pagenow . '?post_type=' . $typenow;
|
|
|
|
else
|
|
|
|
$the_parent = $pagenow;
|
|
|
|
if ( ! $page_hook = get_plugin_page_hook($plugin_page, $the_parent) ) {
|
2008-10-14 02:28:53 +02:00
|
|
|
$page_hook = get_plugin_page_hook($plugin_page, $plugin_page);
|
2008-10-21 18:31:06 +02:00
|
|
|
// backwards compatibility for plugins using add_management_page
|
2008-11-27 22:11:25 +01:00
|
|
|
if ( empty( $page_hook ) && 'edit.php' == $pagenow && '' != get_plugin_page_hook($plugin_page, 'tools.php') ) {
|
2009-01-05 20:24:49 +01:00
|
|
|
// There could be plugin specific params on the URL, so we need the whole query string
|
|
|
|
if ( !empty($_SERVER[ 'QUERY_STRING' ]) )
|
|
|
|
$query_string = $_SERVER[ 'QUERY_STRING' ];
|
|
|
|
else
|
|
|
|
$query_string = 'page=' . $plugin_page;
|
2010-10-27 12:43:43 +02:00
|
|
|
wp_redirect( admin_url('tools.php?' . $query_string) );
|
2008-10-21 18:31:06 +02:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
2010-03-04 01:15:55 +01:00
|
|
|
unset($the_parent);
|
2010-01-15 21:21:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$hook_suffix = '';
|
|
|
|
if ( isset($page_hook) )
|
|
|
|
$hook_suffix = $page_hook;
|
|
|
|
else if ( isset($plugin_page) )
|
|
|
|
$hook_suffix = $plugin_page;
|
|
|
|
else if ( isset($pagenow) )
|
|
|
|
$hook_suffix = $pagenow;
|
|
|
|
|
2010-01-22 19:27:54 +01:00
|
|
|
set_current_screen();
|
2004-12-30 19:05:46 +01:00
|
|
|
|
2010-01-15 21:21:18 +01:00
|
|
|
// Handle plugin admin pages.
|
|
|
|
if ( isset($plugin_page) ) {
|
2005-02-07 02:15:06 +01:00
|
|
|
if ( $page_hook ) {
|
2006-08-22 19:38:09 +02:00
|
|
|
do_action('load-' . $page_hook);
|
2005-02-07 02:15:06 +01:00
|
|
|
if (! isset($_GET['noheader']))
|
2007-07-27 23:28:01 +02:00
|
|
|
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-02-07 02:15:06 +01:00
|
|
|
do_action($page_hook);
|
|
|
|
} else {
|
2010-01-26 19:16:53 +01:00
|
|
|
if ( validate_file($plugin_page) )
|
2006-07-06 00:00:03 +02:00
|
|
|
wp_die(__('Invalid plugin page'));
|
2010-01-26 19:16:53 +01:00
|
|
|
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2010-01-12 22:11:52 +01:00
|
|
|
if ( !( file_exists(WP_PLUGIN_DIR . "/$plugin_page") && is_file(WP_PLUGIN_DIR . "/$plugin_page") ) && !( file_exists(WPMU_PLUGIN_DIR . "/$plugin_page") && is_file(WPMU_PLUGIN_DIR . "/$plugin_page") ) )
|
2006-07-06 00:00:03 +02:00
|
|
|
wp_die(sprintf(__('Cannot load %s.'), htmlentities($plugin_page)));
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2006-08-22 19:38:09 +02:00
|
|
|
do_action('load-' . $plugin_page);
|
|
|
|
|
2010-01-26 19:16:53 +01:00
|
|
|
if ( !isset($_GET['noheader']))
|
2007-07-27 23:28:01 +02:00
|
|
|
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2010-01-12 22:11:52 +01:00
|
|
|
if ( file_exists(WPMU_PLUGIN_DIR . "/$plugin_page") )
|
|
|
|
include(WPMU_PLUGIN_DIR . "/$plugin_page");
|
|
|
|
else
|
2010-06-29 15:52:56 +02:00
|
|
|
include(WP_PLUGIN_DIR . "/$plugin_page");
|
2005-02-07 02:15:06 +01:00
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-02-07 02:15:06 +01:00
|
|
|
include(ABSPATH . 'wp-admin/admin-footer.php');
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2005-08-21 09:03:23 +02:00
|
|
|
exit();
|
|
|
|
} else if (isset($_GET['import'])) {
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-08-21 09:03:23 +02:00
|
|
|
$importer = $_GET['import'];
|
|
|
|
|
2006-07-27 00:18:36 +02:00
|
|
|
if ( ! current_user_can('import') )
|
|
|
|
wp_die(__('You are not allowed to import.'));
|
|
|
|
|
2010-05-27 04:03:06 +02:00
|
|
|
if ( validate_file($importer) )
|
|
|
|
wp_redirect( admin_url( 'import.php?invalid=' . $importer ) );
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2007-08-24 01:09:03 +02:00
|
|
|
// Allow plugins to define importers as well
|
2010-01-26 19:16:53 +01:00
|
|
|
if ( !isset($wp_importers) || !isset($wp_importers[$importer]) || ! is_callable($wp_importers[$importer][2])) {
|
2007-08-24 01:09:03 +02:00
|
|
|
if (! file_exists(ABSPATH . "wp-admin/import/$importer.php"))
|
2010-05-27 04:03:06 +02:00
|
|
|
wp_redirect( admin_url( 'import.php?invalid=' . $importer ) );
|
2007-08-24 01:09:03 +02:00
|
|
|
include(ABSPATH . "wp-admin/import/$importer.php");
|
|
|
|
}
|
2005-08-21 09:03:23 +02:00
|
|
|
|
2008-11-27 22:11:25 +01:00
|
|
|
$parent_file = 'tools.php';
|
2006-10-06 03:14:47 +02:00
|
|
|
$submenu_file = 'import.php';
|
2006-11-18 08:31:29 +01:00
|
|
|
$title = __('Import');
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-08-21 09:03:23 +02:00
|
|
|
if (! isset($_GET['noheader']))
|
|
|
|
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
|
|
|
|
2007-05-25 09:16:21 +02:00
|
|
|
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
2005-08-21 09:03:23 +02:00
|
|
|
|
2005-09-11 00:44:14 +02:00
|
|
|
define('WP_IMPORTING', true);
|
2010-01-18 23:21:36 +01:00
|
|
|
|
2010-09-09 04:43:18 +02:00
|
|
|
if ( apply_filters( 'force_filtered_html_on_import', false ) )
|
|
|
|
kses_init_filters(); // Always filter imported data with kses on multisite.
|
2005-09-11 00:44:14 +02:00
|
|
|
|
2005-08-21 09:03:23 +02:00
|
|
|
call_user_func($wp_importers[$importer][2]);
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-08-21 09:03:23 +02:00
|
|
|
include(ABSPATH . 'wp-admin/admin-footer.php');
|
|
|
|
|
2008-10-09 00:16:35 +02:00
|
|
|
// Make sure rules are flushed
|
|
|
|
global $wp_rewrite;
|
2009-06-16 04:44:28 +02:00
|
|
|
$wp_rewrite->flush_rules(false);
|
2008-10-09 00:16:35 +02:00
|
|
|
|
2005-02-07 02:15:06 +01:00
|
|
|
exit();
|
2006-09-12 01:57:34 +02:00
|
|
|
} else {
|
|
|
|
do_action("load-$pagenow");
|
2010-10-21 21:55:28 +02:00
|
|
|
// Backwards compatibility with old load-page-new.php, load-page.php,
|
2010-10-19 09:48:22 +02:00
|
|
|
// and load-categories.php actions.
|
|
|
|
if ( $typenow == 'page' ) {
|
|
|
|
if ( $pagenow == 'post-new.php' )
|
|
|
|
do_action( 'load-page-new.php' );
|
|
|
|
elseif ( $pagenow == 'post.php' )
|
|
|
|
do_action( 'load-page.php' );
|
2010-07-12 17:09:32 +02:00
|
|
|
} elseif ( $taxnow == 'category' && $pagenow == 'edit-tags.php' ) {
|
|
|
|
do_action( 'load-categories.php' );
|
|
|
|
}
|
2004-10-19 05:03:06 +02:00
|
|
|
}
|
|
|
|
|
2008-07-11 22:24:35 +02:00
|
|
|
if ( !empty($_REQUEST['action']) )
|
|
|
|
do_action('admin_action_' . $_REQUEST['action']);
|
|
|
|
|
2008-11-26 09:58:44 +01:00
|
|
|
?>
|