mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-31 04:31:35 +01:00
Inline documentation for hooks in wp-admin/press-this.php.
props ninio, kpdesign. fixes #25731. Built from https://develop.svn.wordpress.org/trunk@26237 git-svn-id: http://core.svn.wordpress.org/trunk@26144 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
53d47bf514
commit
38c5e9a668
@ -309,12 +309,31 @@ var photostorage = false;
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
/** This action is documented in wp-admin/admin-header.php */
|
||||||
do_action( 'admin_enqueue_scripts', 'press-this.php' );
|
do_action( 'admin_enqueue_scripts', 'press-this.php' );
|
||||||
|
/**
|
||||||
|
* Print styles for the Press This admin page.
|
||||||
|
*
|
||||||
|
* @since 3.7.0
|
||||||
|
*/
|
||||||
do_action( 'admin_print_styles-press-this.php' );
|
do_action( 'admin_print_styles-press-this.php' );
|
||||||
|
/** This action is documented in wp-admin/admin-header.php */
|
||||||
do_action( 'admin_print_styles' );
|
do_action( 'admin_print_styles' );
|
||||||
|
/**
|
||||||
|
* Print scripts for the Press This admin page.
|
||||||
|
*
|
||||||
|
* @since 3.7.0
|
||||||
|
*/
|
||||||
do_action( 'admin_print_scripts-press-this.php' );
|
do_action( 'admin_print_scripts-press-this.php' );
|
||||||
|
/** This action is documented in wp-admin/admin-header.php */
|
||||||
do_action( 'admin_print_scripts' );
|
do_action( 'admin_print_scripts' );
|
||||||
|
/**
|
||||||
|
* Fires in the head tag on the Press This admin page.
|
||||||
|
*
|
||||||
|
* @since 3.7.0
|
||||||
|
*/
|
||||||
do_action( 'admin_head-press-this.php' );
|
do_action( 'admin_head-press-this.php' );
|
||||||
|
/** This action is documented in wp-admin/admin-header.php */
|
||||||
do_action( 'admin_head' );
|
do_action( 'admin_head' );
|
||||||
?>
|
?>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
@ -649,8 +668,10 @@ $admin_body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace(
|
|||||||
</tr></table>
|
</tr></table>
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
do_action('admin_footer');
|
/** This action is documented in wp-admin/admin-footer.php */
|
||||||
do_action('admin_print_footer_scripts');
|
do_action( 'admin_footer' );
|
||||||
|
/** This action is documented in wp-admin/admin-footer.php */
|
||||||
|
do_action( 'admin_print_footer_scripts' );
|
||||||
?>
|
?>
|
||||||
<script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
|
<script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
|
||||||
</body>
|
</body>
|
||||||
|
Loading…
Reference in New Issue
Block a user