Make WordPress Core

Changeset 26237


Ignore:
Timestamp:
11/16/2013 07:12:21 PM (11 years ago)
Author:
SergeyBiryukov
Message:

Inline documentation for hooks in wp-admin/press-this.php.

props ninio, kpdesign.
fixes #25731.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/press-this.php

    r25616 r26237  
    310310
    311311<?php
     312    /** This action is documented in wp-admin/admin-header.php */
    312313    do_action( 'admin_enqueue_scripts', 'press-this.php' );
     314    /**
     315     * Print styles for the Press This admin page.
     316     *
     317     * @since 3.7.0
     318     */
    313319    do_action( 'admin_print_styles-press-this.php' );
     320    /** This action is documented in wp-admin/admin-header.php */
    314321    do_action( 'admin_print_styles' );
     322    /**
     323     * Print scripts for the Press This admin page.
     324     *
     325     * @since 3.7.0
     326     */
    315327    do_action( 'admin_print_scripts-press-this.php' );
     328    /** This action is documented in wp-admin/admin-header.php */
    316329    do_action( 'admin_print_scripts' );
     330    /**
     331     * Fires in the head tag on the Press This admin page.
     332     *
     333     * @since 3.7.0
     334     */
    317335    do_action( 'admin_head-press-this.php' );
     336    /** This action is documented in wp-admin/admin-header.php */
    318337    do_action( 'admin_head' );
    319338?>
     
    650669</div>
    651670<?php
    652 do_action('admin_footer');
    653 do_action('admin_print_footer_scripts');
     671/** This action is documented in wp-admin/admin-footer.php */
     672do_action( 'admin_footer' );
     673/** This action is documented in wp-admin/admin-footer.php */
     674do_action( 'admin_print_footer_scripts' );
    654675?>
    655676<script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
Note: See TracChangeset for help on using the changeset viewer.