File level phpdc from jacobsantos. see #7550

git-svn-id: http://svn.automattic.com/wordpress/trunk@9052 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-10-02 01:02:17 +00:00
parent 33bcf4ec87
commit a2b6f064b3
4 changed files with 38 additions and 0 deletions

View File

@ -1,4 +1,15 @@
<?php
/**
* Draft Page Administration Panel.
*
* This was created for the administration navigation instead of using a query
* for the drafts.
*
* @package WordPress
* @subpackage Administration
*/
/** Locks the post status to draft to prevent premature posting. */
$locked_post_status = 'draft';
$_GET['post_status'] = 'draft';
require_once('admin.php');

View File

@ -1,4 +1,15 @@
<?php
/**
* Draft Post Administration Panel.
*
* This was created for the administration navigation instead of using a query
* for the drafts.
*
* @package WordPress
* @subpackage Administration
*/
/** Locks the post status to draft to prevent premature posting. */
$locked_post_status = 'draft';
$_GET['post_status'] = 'draft';
require_once('admin.php');

View File

@ -1,4 +1,12 @@
<?php
/**
* New Comment management "Inbox" Administration Panel feature.
*
* @package WordPress
* @subpackage Administration
*/
/** Administration bootstrap */
require_once('admin.php');
$title = __('Inbox');

View File

@ -1,5 +1,13 @@
<?php
/**
* Upload new media Administration Panel.
*
* @package WordPress
* @subpackage Administration
*/
$_GET['inline'] = 'true';
/** Administration bootstrap */
require_once('admin.php');
$title = __('Upload New Media');
require_once('media-upload.php');