Make WordPress Core

Ticket #7496: 7496.r8656.2.diff

File 7496.r8656.2.diff, 913 bytes (added by jacobsantos, 17 years ago)

From base WordPress, completes wp-admin file level inline documentation based off of r8656

  • edit-form.php

     
    1 
     1<?php
     2/**
     3 * Edit post form for Write Post and for the Bookmarklet mode.
     4 *
     5 * @package WordPress
     6 * @subpackage Administration
     7 */
     8?>
    29<div class="wrap">
    310<h2><?php _e('Write Post'); ?></h2>
    411<form name="post" action="post.php" method="post" id="simple">
  • sidebar.php

     
    11<?php
     2/**
     3 * Quick way to create a WordPress Post.
     4 *
     5 * @package WordPress
     6 * @subpackage Administration
     7 */
     8
     9/**
     10 * @var string
     11 * @name $mode
     12 */
    213$mode = 'sidebar';
    314
     15/** WordPress Administration Bootstrap */
    416require_once('admin.php');
    517
    618if ( ! current_user_can('edit_posts') )