Inline documentation for hooks in wp-admin/update-core.php.

Props JoshuaAbenazer, kpdesign.
Fixes #25991.

Built from https://develop.svn.wordpress.org/trunk@26894


git-svn-id: http://core.svn.wordpress.org/trunk@26777 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2014-01-02 03:07:10 +00:00
parent cea5ae90f5
commit fa271ded20
1 changed files with 16 additions and 2 deletions

View File

@ -521,7 +521,12 @@ if ( 'upgrade-core' == $action ) {
if ( $core || $plugins || $themes )
list_translation_updates();
unset( $core, $plugins, $themes );
do_action('core_upgrade_preamble');
/**
* Fires after the core, plugin, and theme update tables.
*
* @since 2.9.0
*/
do_action( 'core_upgrade_preamble' );
echo '</div>';
include(ABSPATH . 'wp-admin/admin-footer.php');
@ -627,5 +632,14 @@ if ( 'upgrade-core' == $action ) {
require_once( ABSPATH . 'wp-admin/admin-footer.php' );
} else {
do_action('update-core-custom_' . $action);
/**
* Fires for each custom update action on the WordPress Updates screen.
*
* The dynamic portion of the hook name, $action, refers to the
* passed update action. The hook fires in lieu of all available
* default update actions.
*
* @since 3.2.0
*/
do_action( "update-core-custom_{$action}" );
}