activated_plugin
Fires after a plugin has been activated.
Description
Parameters (3)
- 0. $array (callback) =>
array( &$this, 'check_activated_plugin' )
- The array.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
2
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'activated_plugin', $array, $int, $int );
- The following example is for adding a hook callback.
- // define the activated_plugin callback
- function action_activated_plugin( $array, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'activated_plugin', 'action_activated_plugin', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'activated_plugin', 'action_activated_plugin', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /lib/admin.php
- add_action( 'activated_plugin', array( &$this, 'check_activated_plugin' ), 10, 2 );