2004-10-19 05:03:06 +02:00
|
|
|
<?php
|
2005-05-09 13:06:45 +02:00
|
|
|
if ( defined('ABSPATH') )
|
|
|
|
require_once( ABSPATH . 'wp-config.php');
|
|
|
|
else
|
|
|
|
require_once('../wp-config.php');
|
2005-11-21 10:11:19 +01:00
|
|
|
|
|
|
|
if ( get_option('db_version') != $wp_db_version )
|
2006-07-05 21:13:26 +02:00
|
|
|
wp_die(sprintf(__("Your database is out-of-date. Please <a href='%s'>upgrade</a>."), get_option('siteurl') . '/wp-admin/upgrade.php'));
|
2005-05-09 13:06:45 +02:00
|
|
|
|
2004-12-14 04:00:55 +01:00
|
|
|
require_once(ABSPATH . 'wp-admin/admin-functions.php');
|
2005-07-09 00:59:15 +02:00
|
|
|
require_once(ABSPATH . 'wp-admin/admin-db.php');
|
2006-06-11 08:43:54 +02:00
|
|
|
require_once(ABSPATH . WPINC . '/registration.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
|
|
|
|
2006-02-22 20:08:55 +01:00
|
|
|
wp_get_current_user();
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2006-08-30 23:46:31 +02:00
|
|
|
$posts_per_page = get_option('posts_per_page');
|
|
|
|
$what_to_show = get_option('what_to_show');
|
|
|
|
$date_format = get_option('date_format');
|
|
|
|
$time_format = get_option('time_format');
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2006-07-03 21:03:37 +02:00
|
|
|
wp_reset_vars(array('profile', 'redirect', 'redirect_url', 'a', 'popuptitle', 'popupurl', 'text', 'trackback', 'pingback'));
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2006-05-22 19:16:05 +02:00
|
|
|
wp_enqueue_script( 'fat' );
|
|
|
|
|
|
|
|
$editing = false;
|
2006-01-10 06:16:17 +01:00
|
|
|
|
2004-10-19 05:03:06 +02: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
|
|
|
}
|
|
|
|
|
|
|
|
require(ABSPATH . '/wp-admin/menu.php');
|
|
|
|
|
|
|
|
// Handle plugin admin pages.
|
|
|
|
if (isset($plugin_page)) {
|
2005-02-07 02:15:06 +01:00
|
|
|
$page_hook = get_plugin_page_hook($plugin_page, $pagenow);
|
2004-12-30 19:05:46 +01:00
|
|
|
|
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']))
|
|
|
|
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 {
|
|
|
|
if ( validate_file($plugin_page) ) {
|
2006-07-06 00:00:03 +02:00
|
|
|
wp_die(__('Invalid plugin page'));
|
2005-02-07 02:15:06 +01:00
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2006-09-21 22:46:39 +02:00
|
|
|
if (! file_exists(ABSPATH . PLUGINDIR . "/$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);
|
|
|
|
|
2005-02-07 02:15:06 +01:00
|
|
|
if (! isset($_GET['noheader']))
|
|
|
|
require_once(ABSPATH . '/wp-admin/admin-header.php');
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2006-09-21 22:46:39 +02:00
|
|
|
include(ABSPATH . PLUGINDIR . "/$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.'));
|
|
|
|
|
2005-08-21 09:03:23 +02:00
|
|
|
if ( validate_file($importer) ) {
|
2006-07-06 00:00:03 +02:00
|
|
|
wp_die(__('Invalid importer.'));
|
2005-08-21 09:03:23 +02:00
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-08-21 09:03:23 +02:00
|
|
|
if (! file_exists(ABSPATH . "wp-admin/import/$importer.php"))
|
2006-07-06 00:00:03 +02:00
|
|
|
wp_die(__('Cannot load importer.'));
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-08-21 09:03:23 +02:00
|
|
|
include(ABSPATH . "wp-admin/import/$importer.php");
|
|
|
|
|
2006-10-06 03:14:47 +02:00
|
|
|
$parent_file = 'edit.php';
|
|
|
|
$submenu_file = 'import.php';
|
2005-08-21 09:03:23 +02: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');
|
|
|
|
|
|
|
|
require_once(ABSPATH . 'wp-admin/upgrade-functions.php');
|
|
|
|
|
2005-09-11 00:44:14 +02:00
|
|
|
define('WP_IMPORTING', true);
|
2005-10-06 01:58:16 +02:00
|
|
|
kses_init_filters(); // Always filter imported data with kses.
|
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');
|
|
|
|
|
2005-02-07 02:15:06 +01:00
|
|
|
exit();
|
2006-09-12 01:57:34 +02:00
|
|
|
} else {
|
|
|
|
do_action("load-$pagenow");
|
2004-10-19 05:03:06 +02:00
|
|
|
}
|
|
|
|
|
2005-08-21 09:03:23 +02:00
|
|
|
?>
|