Changeset 27695
- Timestamp:
- 03/25/2014 08:04:44 AM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/admin-header.php
r26235 r27695 81 81 82 82 /** 83 * Print stylesfor a specific admin page based on $hook_suffix.83 * Fires when styles are printed for a specific admin page based on $hook_suffix. 84 84 * 85 85 * @since 2.6.0 … … 88 88 89 89 /** 90 * Print stylesfor all admin pages.90 * Fires when styles are printed for all admin pages. 91 91 * 92 92 * @since 2.6.0 … … 95 95 96 96 /** 97 * Print scriptsfor a specific admin page based on $hook_suffix.97 * Fires when scripts are printed for a specific admin page based on $hook_suffix. 98 98 * 99 99 * @since 2.1.0 … … 102 102 103 103 /** 104 * Print scriptsfor all admin pages.104 * Fires when scripts are printed for all admin pages. 105 105 * 106 106 * @since 2.1.0 -
trunk/src/wp-admin/customize.php
r27574 r27695 85 85 <?php 86 86 /** 87 * Print Customizer control styles.87 * Fires when Customizer control styles are printed. 88 88 * 89 89 * @since 3.4.0 … … 92 92 93 93 /** 94 * Print Customizer control scripts.94 * Fires when Customizer control scripts are printed. 95 95 * 96 96 * @since 3.4.0 -
trunk/src/wp-admin/includes/media.php
r27675 r27695 443 443 444 444 /** 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. 446 446 * 447 447 * @since 2.9.0 … … 453 453 454 454 /** 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. 456 456 * 457 457 * @since 2.9.0 … … 463 463 464 464 /** 465 * Printscripts 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. 467 467 * 468 468 * @since 2.9.0 -
trunk/src/wp-admin/includes/template.php
r27470 r27695 1515 1515 ?> 1516 1516 </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 */ ?> 1520 1518 <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; ?>"> 1521 1519 <script type="text/javascript"> -
trunk/src/wp-admin/press-this.php
r27262 r27695 309 309 /** This action is documented in wp-admin/admin-header.php */ 310 310 do_action( 'admin_enqueue_scripts', 'press-this.php' ); 311 311 312 /** 312 * Print stylesfor the Press This admin page.313 * Firest when styles are printed for the Press This admin page. 313 314 * 314 315 * @since 3.7.0 315 316 */ 316 317 do_action( 'admin_print_styles-press-this.php' ); 318 317 319 /** This action is documented in wp-admin/admin-header.php */ 318 320 do_action( 'admin_print_styles' ); 321 319 322 /** 320 * Print scriptsfor the Press This admin page.323 * Fires when scripts are printed for the Press This admin page. 321 324 * 322 325 * @since 3.7.0 323 326 */ 324 327 do_action( 'admin_print_scripts-press-this.php' ); 328 325 329 /** This action is documented in wp-admin/admin-header.php */ 326 330 do_action( 'admin_print_scripts' ); 331 327 332 /** 328 333 * Fires in the head tag on the Press This admin page. … … 331 336 */ 332 337 do_action( 'admin_head-press-this.php' ); 338 333 339 /** This action is documented in wp-admin/admin-header.php */ 334 340 do_action( 'admin_head' ); -
trunk/src/wp-includes/media-template.php
r27658 r27695 1030 1030 1031 1031 /** 1032 * Prints the media manager custom media templates.1032 * Fires when the custom Backbone media templates are printed. 1033 1033 * 1034 1034 * @since 3.5.0
Note: See TracChangeset
for help on using the changeset viewer.