2004-10-18 23:03:06 -04:00
|
|
|
<?php
|
2008-08-11 16:26:31 -04:00
|
|
|
/**
|
|
|
|
* WordPress Administration Bootstrap
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* In WordPress Administration Panels
|
|
|
|
*
|
|
|
|
* @since unknown
|
|
|
|
*/
|
2009-04-22 08:24:45 -04:00
|
|
|
if ( !defined('WP_ADMIN') )
|
|
|
|
define('WP_ADMIN', TRUE);
|
2007-12-19 12:56:16 -05:00
|
|
|
|
2009-12-30 05:15:10 -05:00
|
|
|
require_once(dirname(dirname(__FILE__)) . '/wp-load.php');
|
2005-11-21 04:11:19 -05:00
|
|
|
|
2009-04-21 19:12:57 -04:00
|
|
|
if ( get_option('db_upgraded') ) {
|
2009-02-09 14:19:38 -05:00
|
|
|
$wp_rewrite->flush_rules();
|
2009-04-21 19:12:57 -04:00
|
|
|
update_option( 'db_upgraded', false );
|
2009-02-09 14:19:38 -05: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 16:11:52 -05: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 17:11:12 -05:00
|
|
|
* On really small MU installs run the upgrader every time,
|
2010-01-12 16:11:52 -05: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 13:16:53 -05:00
|
|
|
unset($response);
|
2010-01-12 16:11:52 -05:00
|
|
|
}
|
2010-01-26 13:16:53 -05:00
|
|
|
unset($c);
|
2010-01-12 16:11:52 -05:00
|
|
|
}
|
2007-02-15 03:16:43 -05:00
|
|
|
}
|
|
|
|
|
2007-05-25 03:16:21 -04:00
|
|
|
require_once(ABSPATH . 'wp-admin/includes/admin.php');
|
2005-09-13 20:03:02 -04:00
|
|
|
|
2004-12-13 22:00:55 -05:00
|
|
|
auth_redirect();
|
2004-10-18 23:03:06 -04:00
|
|
|
|
2005-06-08 20:17:43 -04:00
|
|
|
nocache_headers();
|
2004-10-18 23:03:06 -04:00
|
|
|
|
2005-03-31 00:25:54 -05:00
|
|
|
update_category_cache();
|
2004-10-18 23:03:06 -04:00
|
|
|
|
2009-10-27 14:13:42 -04: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 08:55:03 -04:00
|
|
|
set_screen_options();
|
2009-04-17 08:46:53 -04:00
|
|
|
|
2006-08-30 17:46:31 -04:00
|
|
|
$date_format = get_option('date_format');
|
|
|
|
$time_format = get_option('time_format');
|
2004-10-18 23:03:06 -04:00
|
|
|
|
2009-10-14 01:53:49 -04:00
|
|
|
wp_reset_vars(array('profile', 'redirect', 'redirect_url', 'a', 'text', 'trackback', 'pingback'));
|
2004-10-18 23:03:06 -04:00
|
|
|
|
2008-01-09 07:12:35 -05:00
|
|
|
wp_enqueue_script( 'common' );
|
|
|
|
wp_enqueue_script( 'jquery-color' );
|
2006-05-22 13:16:05 -04:00
|
|
|
|
|
|
|
$editing = false;
|
2006-01-10 00:16:17 -05:00
|
|
|
|
2010-03-03 19:15:55 -05:00
|
|
|
if ( isset($_GET['page']) ) {
|
2005-11-17 18:01:28 -05:00
|
|
|
$plugin_page = stripslashes($_GET['page']);
|
2005-12-21 22:06:04 -05:00
|
|
|
$plugin_page = plugin_basename($plugin_page);
|
2006-07-26 18:18:36 -04:00
|
|
|
}
|
|
|
|
|
2010-03-03 19:15:55 -05:00
|
|
|
if ( isset($_GET['post_type']) )
|
|
|
|
$typenow = sanitize_user($_GET['post_type'], true);
|
|
|
|
else
|
|
|
|
$typenow = '';
|
|
|
|
|
2007-07-27 17:28:01 -04:00
|
|
|
require(ABSPATH . 'wp-admin/menu.php');
|
2006-07-26 18:18:36 -04:00
|
|
|
|
2010-05-06 17:36:55 -04:00
|
|
|
if ( current_user_can( 'manage_options' ) )
|
|
|
|
@ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', '256M' ) );
|
|
|
|
|
2008-02-19 15:24:50 -05:00
|
|
|
do_action('admin_init');
|
|
|
|
|
2010-03-03 19:15:55 -05: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-13 20:28:53 -04:00
|
|
|
$page_hook = get_plugin_page_hook($plugin_page, $plugin_page);
|
2008-10-21 12:31:06 -04:00
|
|
|
// backwards compatibility for plugins using add_management_page
|
2008-11-27 16:11:25 -05:00
|
|
|
if ( empty( $page_hook ) && 'edit.php' == $pagenow && '' != get_plugin_page_hook($plugin_page, 'tools.php') ) {
|
2009-01-05 14:24:49 -05: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;
|
|
|
|
wp_redirect( 'tools.php?' . $query_string );
|
2008-10-21 12:31:06 -04:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
2010-03-03 19:15:55 -05:00
|
|
|
unset($the_parent);
|
2010-01-15 15:21:18 -05: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 13:27:54 -05:00
|
|
|
set_current_screen();
|
2004-12-30 13:05:46 -05:00
|
|
|
|
2010-01-15 15:21:18 -05:00
|
|
|
// Handle plugin admin pages.
|
|
|
|
if ( isset($plugin_page) ) {
|
2005-02-06 20:15:06 -05:00
|
|
|
if ( $page_hook ) {
|
2006-08-22 13:38:09 -04:00
|
|
|
do_action('load-' . $page_hook);
|
2005-02-06 20:15:06 -05:00
|
|
|
if (! isset($_GET['noheader']))
|
2007-07-27 17:28:01 -04:00
|
|
|
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2005-02-06 20:15:06 -05:00
|
|
|
do_action($page_hook);
|
|
|
|
} else {
|
2010-01-26 13:16:53 -05:00
|
|
|
if ( validate_file($plugin_page) )
|
2006-07-05 18:00:03 -04:00
|
|
|
wp_die(__('Invalid plugin page'));
|
2010-01-26 13:16:53 -05:00
|
|
|
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2010-01-12 16:11:52 -05: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-05 18:00:03 -04:00
|
|
|
wp_die(sprintf(__('Cannot load %s.'), htmlentities($plugin_page)));
|
2004-10-18 23:03:06 -04:00
|
|
|
|
2006-08-22 13:38:09 -04:00
|
|
|
do_action('load-' . $plugin_page);
|
|
|
|
|
2010-01-26 13:16:53 -05:00
|
|
|
if ( !isset($_GET['noheader']))
|
2007-07-27 17:28:01 -04:00
|
|
|
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2010-01-12 16:11:52 -05:00
|
|
|
if ( file_exists(WPMU_PLUGIN_DIR . "/$plugin_page") )
|
|
|
|
include(WPMU_PLUGIN_DIR . "/$plugin_page");
|
|
|
|
else
|
|
|
|
include(ABSPATH . PLUGINDIR . "/$plugin_page");
|
2005-02-06 20:15:06 -05:00
|
|
|
}
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2005-02-06 20:15:06 -05:00
|
|
|
include(ABSPATH . 'wp-admin/admin-footer.php');
|
2004-10-18 23:03:06 -04:00
|
|
|
|
2005-08-21 03:03:23 -04:00
|
|
|
exit();
|
|
|
|
} else if (isset($_GET['import'])) {
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2005-08-21 03:03:23 -04:00
|
|
|
$importer = $_GET['import'];
|
|
|
|
|
2006-07-26 18:18:36 -04:00
|
|
|
if ( ! current_user_can('import') )
|
|
|
|
wp_die(__('You are not allowed to import.'));
|
|
|
|
|
2005-08-21 03:03:23 -04:00
|
|
|
if ( validate_file($importer) ) {
|
2006-07-05 18:00:03 -04:00
|
|
|
wp_die(__('Invalid importer.'));
|
2005-08-21 03:03:23 -04:00
|
|
|
}
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2007-08-23 19:09:03 -04:00
|
|
|
// Allow plugins to define importers as well
|
2010-01-26 13:16:53 -05:00
|
|
|
if ( !isset($wp_importers) || !isset($wp_importers[$importer]) || ! is_callable($wp_importers[$importer][2])) {
|
2007-08-23 19:09:03 -04:00
|
|
|
if (! file_exists(ABSPATH . "wp-admin/import/$importer.php"))
|
|
|
|
wp_die(__('Cannot load importer.'));
|
|
|
|
include(ABSPATH . "wp-admin/import/$importer.php");
|
|
|
|
}
|
2005-08-21 03:03:23 -04:00
|
|
|
|
2008-11-27 16:11:25 -05:00
|
|
|
$parent_file = 'tools.php';
|
2006-10-05 21:14:47 -04:00
|
|
|
$submenu_file = 'import.php';
|
2006-11-18 02:31:29 -05:00
|
|
|
$title = __('Import');
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2005-08-21 03:03:23 -04:00
|
|
|
if (! isset($_GET['noheader']))
|
|
|
|
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
|
|
|
|
2007-05-25 03:16:21 -04:00
|
|
|
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
2005-08-21 03:03:23 -04:00
|
|
|
|
2005-09-10 18:44:14 -04:00
|
|
|
define('WP_IMPORTING', true);
|
2010-01-18 17:21:36 -05:00
|
|
|
|
|
|
|
if ( is_multisite() )
|
2010-01-12 16:11:52 -05:00
|
|
|
kses_init_filters(); // Always filter imported data with kses.
|
2005-09-10 18:44:14 -04:00
|
|
|
|
2005-08-21 03:03:23 -04:00
|
|
|
call_user_func($wp_importers[$importer][2]);
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2005-08-21 03:03:23 -04:00
|
|
|
include(ABSPATH . 'wp-admin/admin-footer.php');
|
|
|
|
|
2008-10-08 18:16:35 -04:00
|
|
|
// Make sure rules are flushed
|
|
|
|
global $wp_rewrite;
|
2009-06-15 22:44:28 -04:00
|
|
|
$wp_rewrite->flush_rules(false);
|
2008-10-08 18:16:35 -04:00
|
|
|
|
2005-02-06 20:15:06 -05:00
|
|
|
exit();
|
2006-09-11 19:57:34 -04:00
|
|
|
} else {
|
|
|
|
do_action("load-$pagenow");
|
2004-10-18 23:03:06 -04:00
|
|
|
}
|
|
|
|
|
2008-07-11 16:24:35 -04:00
|
|
|
if ( !empty($_REQUEST['action']) )
|
|
|
|
do_action('admin_action_' . $_REQUEST['action']);
|
|
|
|
|
2008-11-26 03:58:44 -05:00
|
|
|
?>
|