From eaedc9b4271267688d4852b049dd0ed89ec8af3a Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 27 Oct 2013 18:36:37 +0000 Subject: [PATCH] Inline documentation for hooks in wp-admin/update.php. Props ninio, kpdesign. Fixes #25723. git-svn-id: https://develop.svn.wordpress.org/trunk@25951 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/update.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/update.php b/src/wp-admin/update.php index b89ada27de..4290e58d78 100644 --- a/src/wp-admin/update.php +++ b/src/wp-admin/update.php @@ -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}" ); } }