Make WordPress Core

Changeset 13895


Ignore:
Timestamp:
03/30/2010 06:55:35 PM (13 years ago)
Author:
nacin
Message:

Correct the @since's for custom-header.php.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/custom-header.php

    r13827 r13895  
    1010 * The custom header image class.
    1111 *
    12  * @since 3.0.0
     12 * @since 2.1.0
    1313 * @package WordPress
    1414 * @subpackage Administration
     
    2020     *
    2121     * @var callback
    22      * @since 3.0.0
     22     * @since 2.1.0
    2323     * @access private
    2424     */
     
    3434    var $admin_image_div_callback;
    3535
     36    /**
     37     * Holds default headers.
     38     *
     39     * @var array
     40     * @since 3.0.0
     41     * @access private
     42     */
    3643    var $default_headers = array();
    3744
     
    3946     * PHP4 Constructor - Register administration header callback.
    4047     *
    41      * @since 3.0.0
     48     * @since 2.1.0
    4249     * @param callback $admin_header_callback
    4350     * @param callback $admin_image_div_callback Optional custom image div output callback.
     
    5259     * Set up the hooks for the Custom Header admin page.
    5360     *
    54      * @since 3.0.0
     61     * @since 2.1.0
    5562     */
    5663    function init() {
     
    7077     * Get the current step.
    7178     *
    72      * @since 3.0.0
     79     * @since 2.6.0
    7380     *
    7481     * @return int Current step
     
    8895     * Set up the enqueue for the JavaScript files.
    8996     *
    90      * @since 3.0.0
     97     * @since 2.1.0
    9198     */
    9299    function js_includes() {
     
    116123     * Execute custom header modification.
    117124     *
    118      * @since 3.0.0
     125     * @since 2.6.0
    119126     */
    120127    function take_action() {
     
    149156     * Process the default headers
    150157     *
    151      *  @since 3.0.0
     158     * @since 3.0.0
    152159     */
    153160    function process_default_headers() {
     
    211218     * Execute Javascript depending on step.
    212219     *
    213      * @since 3.0.0
     220     * @since 2.1.0
    214221     */
    215222    function js() {
     
    224231     * Display Javascript based on Step 1.
    225232     *
    226      * @since 3.0.0
     233     * @since 2.6.0
    227234     */
    228235    function js_1() { ?>
     
    302309     * Display Javascript based on Step 2.
    303310     *
    304      * @since 3.0.0
     311     * @since 2.6.0
    305312     */
    306313    function js_2() { ?>
     
    354361     * Display first step of custom header image page.
    355362     *
    356      * @since 3.0.0
     363     * @since 2.1.0
    357364     */
    358365    function step_1() {
     
    449456     * Display second step of custom header image page.
    450457     *
    451      * @since 3.0.0
     458     * @since 2.1.0
    452459     */
    453460    function step_2() {
     
    529536     * Display third step of custom header image page.
    530537     *
    531      * @since 3.0.0
     538     * @since 2.1.0
    532539     */
    533540    function step_3() {
     
    578585     * Display last step of custom header image page.
    579586     *
    580      * @since 3.0.0
     587     * @since 2.1.0
    581588     */
    582589    function finished() {
     
    588595     * Display the page based on the current step.
    589596     *
    590      * @since 3.0.0
     597     * @since 2.1.0
    591598     */
    592599    function admin_page() {
Note: See TracChangeset for help on using the changeset viewer.