mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
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:
parent
cea5ae90f5
commit
fa271ded20
@ -521,7 +521,12 @@ if ( 'upgrade-core' == $action ) {
|
|||||||
if ( $core || $plugins || $themes )
|
if ( $core || $plugins || $themes )
|
||||||
list_translation_updates();
|
list_translation_updates();
|
||||||
unset( $core, $plugins, $themes );
|
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>';
|
echo '</div>';
|
||||||
include(ABSPATH . 'wp-admin/admin-footer.php');
|
include(ABSPATH . 'wp-admin/admin-footer.php');
|
||||||
|
|
||||||
@ -627,5 +632,14 @@ if ( 'upgrade-core' == $action ) {
|
|||||||
require_once( ABSPATH . 'wp-admin/admin-footer.php' );
|
require_once( ABSPATH . 'wp-admin/admin-footer.php' );
|
||||||
|
|
||||||
} else {
|
} 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}" );
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user