2004-10-19 05:03:06 +02:00
|
|
|
<?php
|
2008-08-11 22:26:31 +02:00
|
|
|
/**
|
|
|
|
* WordPress Administration Bootstrap
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2011-04-28 17:24:49 +02:00
|
|
|
* In WordPress Administration Screens
|
2008-08-11 22:26:31 +02:00
|
|
|
*
|
2010-12-20 10:25:21 +01:00
|
|
|
* @since 2.3.2
|
2008-08-11 22:26:31 +02:00
|
|
|
*/
|
2010-10-07 21:34:18 +02:00
|
|
|
if ( ! defined('WP_ADMIN') )
|
2012-01-05 21:50:54 +01: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') )
|
2012-01-05 21:50:54 +01:00
|
|
|
define('WP_NETWORK_ADMIN', false);
|
2010-10-07 21:34:18 +02:00
|
|
|
|
|
|
|
if ( ! defined('WP_USER_ADMIN') )
|
2012-01-05 21:50:54 +01:00
|
|
|
define('WP_USER_ADMIN', false);
|
2010-10-07 21:34:18 +02:00
|
|
|
|
|
|
|
if ( ! WP_NETWORK_ADMIN && ! WP_USER_ADMIN ) {
|
2012-01-05 21:50:54 +01:00
|
|
|
define('WP_BLOG_ADMIN', true);
|
2010-09-02 17:03:39 +02:00
|
|
|
}
|
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
|
|
|
|
2012-09-19 03:51:40 +02:00
|
|
|
nocache_headers();
|
|
|
|
|
2009-04-22 01:12:57 +02:00
|
|
|
if ( get_option('db_upgraded') ) {
|
2012-02-28 21:29:33 +01:00
|
|
|
flush_rewrite_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');
|
2011-09-20 06:17:55 +02:00
|
|
|
} elseif ( get_option('db_version') != $wp_db_version && empty($_POST) ) {
|
2010-01-12 22:11:52 +01:00
|
|
|
if ( !is_multisite() ) {
|
2013-03-01 18:00:25 +01:00
|
|
|
wp_redirect( admin_url( 'upgrade.php?_wp_http_referer=' . urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ) ) );
|
2010-01-12 22:11:52 +01:00
|
|
|
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();
|
2012-08-05 20:32:39 +02: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 22:11:52 +01: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 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
|
|
|
|
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
|
|
|
|
2008-01-09 13:12:35 +01:00
|
|
|
wp_enqueue_script( 'common' );
|
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']) ) {
|
2013-03-01 18:00:25 +01:00
|
|
|
$plugin_page = wp_unslash( $_GET['page'] );
|
2005-12-22 04:06:04 +01:00
|
|
|
$plugin_page = plugin_basename($plugin_page);
|
2006-07-27 00:18:36 +02:00
|
|
|
}
|
|
|
|
|
2011-10-31 22:28:17 +01:00
|
|
|
if ( isset( $_REQUEST['post_type'] ) && post_type_exists( $_REQUEST['post_type'] ) )
|
|
|
|
$typenow = $_REQUEST['post_type'];
|
2010-03-04 01:15:55 +01:00
|
|
|
else
|
|
|
|
$typenow = '';
|
|
|
|
|
2011-10-31 22:28:17 +01:00
|
|
|
if ( isset( $_REQUEST['taxonomy'] ) && taxonomy_exists( $_REQUEST['taxonomy'] ) )
|
|
|
|
$taxnow = $_REQUEST['taxonomy'];
|
2010-06-08 17:34:42 +02:00
|
|
|
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' ) )
|
2011-04-28 18:25:36 +02:00
|
|
|
@ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', WP_MAX_MEMORY_LIMIT ) );
|
2010-05-06 23:36:55 +02:00
|
|
|
|
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
|
|
|
|
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-12-09 19:02:54 +01:00
|
|
|
if ( validate_file($importer) ) {
|
2010-05-27 04:03:06 +02:00
|
|
|
wp_redirect( admin_url( 'import.php?invalid=' . $importer ) );
|
2010-12-09 19:02:54 +01:00
|
|
|
exit;
|
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2011-09-05 21:18:36 +02:00
|
|
|
if ( ! isset($wp_importers[$importer]) || ! is_callable($wp_importers[$importer][2]) ) {
|
|
|
|
wp_redirect( admin_url( 'import.php?invalid=' . $importer ) );
|
|
|
|
exit;
|
2007-08-24 01:09:03 +02:00
|
|
|
}
|
2005-08-21 09:03:23 +02:00
|
|
|
|
2012-06-29 21:24:15 +02:00
|
|
|
do_action( 'load-importer-' . $importer );
|
|
|
|
|
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
|
2011-09-05 21:18:36 +02:00
|
|
|
flush_rewrite_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' );
|
2011-01-20 04:05:22 +01: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 17:09:32 +02:00
|
|
|
}
|
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']);
|