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

Props ninio, kpdesign.
Fixes #25723.

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


git-svn-id: http://core.svn.wordpress.org/trunk@25910 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2013-10-27 18:37:09 +00:00
parent 02d3a290ec
commit 0753c12b85
1 changed files with 10 additions and 1 deletions

View File

@ -252,6 +252,15 @@ if ( isset($_GET['action']) ) {
include(ABSPATH . 'wp-admin/admin-footer.php');
} else {
do_action('update-custom_' . $action);
/**
* Fires when a custom plugin or theme update request is received.
*
* The dynamic portion of the hook name, $action, refers to the action
* provided in the request for wp-admin/update.php. Can be used to
* provide custom update functionality for themes and plugins.
*
* @since 2.8.0
*/
do_action( "update-custom_{$action}" );
}
}