cfdb_edit_setup
The Contact Form DB cfdb edit setup hook.
Description
do_action( 'cfdb_edit_setup', $array );
Parameters (1)
- 0. $array
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'cfdb_edit_setup', $array );
- The following example is for adding a hook callback.
- // define the cfdb_edit_setup callback
- function action_cfdb_edit_setup( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'cfdb_edit_setup', 'action_cfdb_edit_setup', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'cfdb_edit_setup', 'action_cfdb_edit_setup', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /CFDBViewWhatsInDB.php
- do_action_ref_array('cfdb_edit_setup', array($plugin));