all_admin_notices
Prints generic admin screen notices.
Description
Parameters (2)
- 0. $array (callback) =>
array( &$this, 'show_admin_notices' )
- The array.
- 1. $int (int) =>
-10
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'all_admin_notices', $array, $int );
- The following example is for adding a hook callback.
- // define the all_admin_notices callback
- function action_all_admin_notices( $array, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'all_admin_notices', 'action_all_admin_notices', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'all_admin_notices', 'action_all_admin_notices', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /lib/com/notice.php
- add_action( 'all_admin_notices', array( &$this, 'show_admin_notices' ), -10 );