Make WordPress Core


Ignore:
Timestamp:
10/30/2013 04:03:14 PM (13 years ago)
Author:
DrewAPicture
Message:

Inline documentation for hooks in wp-admin/network/edit.php and wp-admin/network/users.php.

Props aralbald for the initial patch.
Fixes #25728.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/network/edit.php

    r25616 r25994  
    1919}
    2020
    21 do_action( 'wpmuadminedit' , '' );
     21/**
     22 * Fires just before the action handler in several Network Admin screens.
     23 *
     24 * This hook fires on multiple screens in the Multisite Network Admin,
     25 * including Users, Network Settings, and Site Settings.
     26 *
     27 * @since 3.0.0
     28 */
     29do_action( 'wpmuadminedit' );
    2230
    23 // Let plugins use us as a post handler easily
     31/**
     32 * Fires the requested handler action.
     33 *
     34 * The dynamic portion of the hook name, $_GET['action'], refers to the name
     35 * of the requested action.
     36 *
     37 * @since 3.1.0
     38 */
    2439do_action( 'network_admin_edit_' . $_GET['action'] );
    2540
Note: See TracChangeset for help on using the changeset viewer.