in_admin_header
Fires at the beginning of the content section in an admin page.
Description
Parameters (2)
- 0. $array (callback) =>
array( &$this, 'hook_admin_notices' )
- The array.
- 1. $int (int) =>
300000
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'in_admin_header', $array, $int );
- The following example is for adding a hook callback.
- // define the in_admin_header callback
- function action_in_admin_header( $array, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'in_admin_header', 'action_in_admin_header', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'in_admin_header', 'action_in_admin_header', 10, 2 );
Defined (3)
The action is defined in the following location(s).
- /lib/com/notice.php
- add_action( 'in_admin_header', array( &$this, 'hook_admin_notices' ), 300000 );
- /lib/admin.php
- add_action( 'in_admin_header', array( &$this, 'conflict_warnings' ), 10 );
- add_action( 'in_admin_header', array( &$this, 'pro_req_notices' ), 20 );