admin_footer
Prints scripts or data before the default footer scripts.
Description
Parameters (1)
- 0. $array (callback) =>
array( &$this, 'admin_footer_script' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'admin_footer', $array );
- The following example is for adding a hook callback.
- // define the admin_footer callback
- function action_admin_footer( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'admin_footer', 'action_admin_footer', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'admin_footer', 'action_admin_footer', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /lib/com/notice.php
- add_action( 'admin_footer', array( &$this, 'admin_footer_script' ) );