2004-11-16 20:29:51 +01:00
|
|
|
<?php
|
2008-08-16 09:27:34 +02:00
|
|
|
/**
|
|
|
|
* New page administration panel.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** WordPress Administration Bootstrap */
|
2004-11-16 20:29:51 +01:00
|
|
|
require_once('admin.php');
|
2008-10-17 22:02:03 +02:00
|
|
|
$title = __('Add New Page');
|
2008-09-25 21:33:53 +02:00
|
|
|
$parent_file = 'edit-pages.php';
|
2005-07-23 08:22:48 +02:00
|
|
|
$editing = true;
|
2006-08-11 05:54:45 +02:00
|
|
|
wp_enqueue_script('autosave');
|
2008-02-08 20:57:50 +01:00
|
|
|
wp_enqueue_script('page');
|
2008-02-18 18:11:12 +01:00
|
|
|
if ( user_can_richedit() )
|
|
|
|
wp_enqueue_script('editor');
|
2008-06-02 23:46:25 +02:00
|
|
|
add_thickbox();
|
2008-01-26 00:11:54 +01:00
|
|
|
wp_enqueue_script('media-upload');
|
2008-04-29 21:17:23 +02:00
|
|
|
wp_enqueue_script('word-count');
|
2008-01-26 00:11:54 +01:00
|
|
|
|
2004-11-16 20:29:51 +01:00
|
|
|
require_once('admin-header.php');
|
|
|
|
?>
|
|
|
|
|
2006-10-04 15:16:07 +02:00
|
|
|
<?php if ( (isset($_GET['posted']) && $_GET['posted']) || isset($_GET['saved']) ) : ?>
|
2008-02-20 20:30:55 +01:00
|
|
|
<div id="message" class="updated fade"><p><strong><?php _e('Page saved.') ?></strong> <a href="edit-pages.php"><?php _e('Manage pages'); ?></a> | <a href="<?php echo get_page_link( isset($_GET['posted']) ? $_GET['posted'] : $_GET['saved'] ); ?>"><?php _e('View page') ; ?></a></p></div>
|
2004-11-16 20:29:51 +01:00
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php
|
2005-07-15 04:16:45 +02:00
|
|
|
if ( current_user_can('edit_pages') ) {
|
2004-11-16 20:29:51 +01:00
|
|
|
$action = 'post';
|
2008-02-02 20:22:14 +01:00
|
|
|
$post = get_default_page_to_edit();
|
2004-11-16 20:29:51 +01:00
|
|
|
|
|
|
|
include('edit-page-form.php');
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
2007-09-04 01:32:58 +02:00
|
|
|
<?php include('admin-footer.php'); ?>
|