2004-10-18 23:03:06 -04:00
|
|
|
<?php
|
2008-08-11 16:26:31 -04:00
|
|
|
/**
|
|
|
|
* WordPress Administration Bootstrap
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2011-04-28 11:24:49 -04:00
|
|
|
* In WordPress Administration Screens
|
2008-08-11 16:26:31 -04:00
|
|
|
*
|
2010-12-20 04:25:21 -05:00
|
|
|
* @since 2.3.2
|
2008-08-11 16:26:31 -04:00
|
|
|
*/
|
2010-10-07 15:34:18 -04:00
|
|
|
if ( ! defined('WP_ADMIN') )
|
2012-01-05 15:50:54 -05:00
|
|
|
define('WP_ADMIN', true);
|
2007-12-19 12:56:16 -05:00
|
|
|
|
2010-10-07 15:34:18 -04:00
|
|
|
if ( ! defined('WP_NETWORK_ADMIN') )
|
2012-01-05 15:50:54 -05:00
|
|
|
define('WP_NETWORK_ADMIN', false);
|
2010-10-07 15:34:18 -04:00
|
|
|
|
|
|
|
if ( ! defined('WP_USER_ADMIN') )
|
2012-01-05 15:50:54 -05:00
|
|
|
define('WP_USER_ADMIN', false);
|
2010-10-07 15:34:18 -04:00
|
|
|
|
|
|
|
if ( ! WP_NETWORK_ADMIN && ! WP_USER_ADMIN ) {
|
2012-01-05 15:50:54 -05:00
|
|
|
define('WP_BLOG_ADMIN', true);
|
2010-09-02 11:03:39 -04:00
|
|
|
}
|
2010-07-30 16:34:54 -04:00
|
|
|
|
2010-05-20 15:20:25 -04:00
|
|
|
if ( isset($_GET['import']) && !defined('WP_LOAD_IMPORTERS') )
|
|
|
|
define('WP_LOAD_IMPORTERS', true);
|
|
|
|
|
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') ) {
|
2012-02-28 15:29:33 -05:00
|
|
|
flush_rewrite_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');
|
2011-09-20 00:17:55 -04:00
|
|
|
} elseif ( get_option('db_version') != $wp_db_version && empty($_POST) ) {
|
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();
|
2012-08-05 14:32:39 -04:00
|
|
|
// If 50 or fewer sites, run every time. Else, run "about ten percent" of the time. Shh, don't check that math.
|
2010-01-12 16:11:52 -05:00
|
|
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-10-31 17:28:17 -04:00
|
|
|
if ( isset( $_REQUEST['post_type'] ) && post_type_exists( $_REQUEST['post_type'] ) )
|
|
|
|
$typenow = $_REQUEST['post_type'];
|
2010-03-03 19:15:55 -05:00
|
|
|
else
|
|
|
|
$typenow = '';
|
|
|
|
|
2011-10-31 17:28:17 -04:00
|
|
|
if ( isset( $_REQUEST['taxonomy'] ) && taxonomy_exists( $_REQUEST['taxonomy'] ) )
|
|
|
|
$taxnow = $_REQUEST['taxonomy'];
|
2010-06-08 11:34:42 -04:00
|
|
|
else
|
|
|
|
$taxnow = '';
|
|
|
|
|
2010-07-30 16:34:54 -04:00
|
|
|
if ( WP_NETWORK_ADMIN )
|
|
|
|
require(ABSPATH . 'wp-admin/network/menu.php');
|
2010-10-07 15:34:18 -04:00
|
|
|
elseif ( WP_USER_ADMIN )
|
|
|
|
require(ABSPATH . 'wp-admin/user/menu.php');
|
2010-07-30 16:34:54 -04:00
|
|
|
else
|
|
|
|
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' ) )
|
2011-04-28 12:25:36 -04:00
|
|
|
@ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', WP_MAX_MEMORY_LIMIT ) );
|
2010-05-06 17:36:55 -04:00
|
|
|
|
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;
|
2010-10-27 06:43:43 -04:00
|
|
|
wp_redirect( admin_url('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
|
|
|
|
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
|
2010-06-29 09:52:56 -04:00
|
|
|
include(WP_PLUGIN_DIR . "/$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.'));
|
|
|
|
|
2010-12-09 13:02:54 -05:00
|
|
|
if ( validate_file($importer) ) {
|
2010-05-26 22:03:06 -04:00
|
|
|
wp_redirect( admin_url( 'import.php?invalid=' . $importer ) );
|
2010-12-09 13:02:54 -05:00
|
|
|
exit;
|
|
|
|
}
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2011-09-05 15:18:36 -04:00
|
|
|
if ( ! isset($wp_importers[$importer]) || ! is_callable($wp_importers[$importer][2]) ) {
|
|
|
|
wp_redirect( admin_url( 'import.php?invalid=' . $importer ) );
|
|
|
|
exit;
|
2007-08-23 19:09:03 -04:00
|
|
|
}
|
2005-08-21 03:03:23 -04:00
|
|
|
|
2012-06-29 15:24:15 -04:00
|
|
|
do_action( 'load-importer-' . $importer );
|
|
|
|
|
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
|
|
|
|
2010-09-08 22:43:18 -04:00
|
|
|
if ( apply_filters( 'force_filtered_html_on_import', false ) )
|
|
|
|
kses_init_filters(); // Always filter imported data with kses on multisite.
|
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
|
2011-09-05 15:18:36 -04:00
|
|
|
flush_rewrite_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");
|
2010-10-21 15:55:28 -04:00
|
|
|
// Backwards compatibility with old load-page-new.php, load-page.php,
|
2010-10-19 03:48:22 -04: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' );
|
2011-01-19 22:05:22 -05:00
|
|
|
} elseif ( $pagenow == 'edit-tags.php' ) {
|
|
|
|
if ( $taxnow == 'category' )
|
|
|
|
do_action( 'load-categories.php' );
|
|
|
|
elseif ( $taxnow == 'link_category' )
|
|
|
|
do_action( 'load-edit-link-categories.php' );
|
2010-07-12 11:09:32 -04:00
|
|
|
}
|
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']);
|