Make WordPress Core

Ticket #26924: 26924.2.diff

File 26924.2.diff, 4.8 KB (added by DrewAPicture, 11 years ago)

All the prints

  • src/wp-admin/admin-header.php

     
    8080do_action( 'admin_enqueue_scripts', $hook_suffix );
    8181
    8282/**
    83  * Print styles for a specific admin page based on $hook_suffix.
     83 * Fires when styles are printed for a specific admin page based on $hook_suffix.
    8484 *
    8585 * @since 2.6.0
    8686 */
    8787do_action( "admin_print_styles-$hook_suffix" );
    8888
    8989/**
    90  * Print styles for all admin pages.
     90 * Fires when styles are printed for all admin pages.
    9191 *
    9292 * @since 2.6.0
    9393 */
    9494do_action( 'admin_print_styles' );
    9595
    9696/**
    97  * Print scripts for a specific admin page based on $hook_suffix.
     97 * Fires when scripts are printed for a specific admin page based on $hook_suffix.
    9898 *
    9999 * @since 2.1.0
    100100 */
    101101do_action( "admin_print_scripts-$hook_suffix" );
    102102
    103103/**
    104  * Print scripts for all admin pages.
     104 * Fires when scripts are printed for all admin pages.
    105105 *
    106106 * @since 2.1.0
    107107 */
  • src/wp-admin/customize.php

     
    8484
    8585<?php
    8686/**
    87  * Print Customizer control styles.
     87 * Fires when Customizer control styles are printed.
    8888 *
    8989 * @since 3.4.0
    9090 */
    9191do_action( 'customize_controls_print_styles' );
    9292
    9393/**
    94  * Print Customizer control scripts.
     94 * Fires when Customizer control scripts are printed.
    9595 *
    9696 * @since 3.4.0
    9797 */
  • src/wp-admin/includes/media.php

     
    442442        do_action( 'admin_enqueue_scripts', 'media-upload-popup' );
    443443
    444444        /**
    445          * Print admin styles enqueued for the legacy (pre-3.5.0) media upload popup.
     445         * Fires when admin styles enqueued for the legacy (pre-3.5.0) media upload popup are printed.
    446446         *
    447447         * @since 2.9.0
    448448         */
     
    452452        do_action( 'admin_print_styles' );
    453453
    454454        /**
    455          * Print admin scripts enqueued for the legacy (pre-3.5.0) media upload popup.
     455         * Fires when admin scripts enqueued for the legacy (pre-3.5.0) media upload popup are printed.
    456456         *
    457457         * @since 2.9.0
    458458         */
     
    462462        do_action( 'admin_print_scripts' );
    463463
    464464        /**
    465          * Print scripts enqueued for the admin header for the legacy (pre-3.5.0)
    466          * media upload popup.
     465         * Fires when scripts enqueued for the admin header for the legacy (pre-3.5.0)
     466         * media upload popup are printed.
    467467         *
    468468         * @since 2.9.0
    469469         */
  • src/wp-admin/includes/template.php

     
    15141514
    15151515?>
    15161516</head>
    1517 <?php
    1518 /** This filter is documented in wp-admin/admin-header.php */
    1519 ?>
     1517<?php /** This filter is documented in wp-admin/admin-header.php */ ?>
    15201518<body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> class="wp-admin wp-core-ui no-js iframe <?php echo apply_filters( 'admin_body_class', '' ) . ' ' . $admin_body_class; ?>">
    15211519<script type="text/javascript">
    15221520//<![CDATA[
  • src/wp-admin/press-this.php

     
    308308<?php
    309309        /** This action is documented in wp-admin/admin-header.php */
    310310        do_action( 'admin_enqueue_scripts', 'press-this.php' );
     311
    311312        /**
    312          * Print styles for the Press This admin page.
     313         * Firest when styles are printed for the Press This admin page.
    313314         *
    314315         * @since 3.7.0
    315316         */
    316317        do_action( 'admin_print_styles-press-this.php' );
     318
    317319        /** This action is documented in wp-admin/admin-header.php */
    318320        do_action( 'admin_print_styles' );
     321
    319322        /**
    320          * Print scripts for the Press This admin page.
     323         * Fires when scripts are printed for the Press This admin page.
    321324         *
    322325         * @since 3.7.0
    323326         */
    324327        do_action( 'admin_print_scripts-press-this.php' );
     328
    325329        /** This action is documented in wp-admin/admin-header.php */
    326330        do_action( 'admin_print_scripts' );
     331
    327332        /**
    328333         * Fires in the head tag on the Press This admin page.
    329334         *
    330335         * @since 3.7.0
    331336         */
    332337        do_action( 'admin_head-press-this.php' );
     338
    333339        /** This action is documented in wp-admin/admin-header.php */
    334340        do_action( 'admin_head' );
    335341?>
  • src/wp-includes/media-template.php

     
    10291029        <?php
    10301030
    10311031        /**
    1032          * Prints the media manager custom media templates.
     1032         * Fires when the custom Backbone media templates are printed.
    10331033         *
    10341034         * @since 3.5.0
    10351035         */