gfpdf_post_tools_settings_page
The WordPress Core gfpdf post tools settings page hook.
Description
Parameters (2)
- 0. $this_view (unknown) =>
[ $this->view
- The this view.
- 1. $system_status (string) =>
'system_status' ]
- The system status.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'gfpdf_post_tools_settings_page', $this_view, $system_status );
- The following example is for adding a hook callback.
- // define the gfpdf_post_tools_settings_page callback
- function action_gfpdf_post_tools_settings_page( $this_view, $system_status ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'gfpdf_post_tools_settings_page', 'action_gfpdf_post_tools_settings_page', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'gfpdf_post_tools_settings_page', 'action_gfpdf_post_tools_settings_page', 10, 2 );
Defined (3)
The action is defined in the following location(s).
- /src/controller/Controller_Settings.php
- add_action( 'gfpdf_post_tools_settings_page', [ $this->view, 'system_status' ] );
- add_action( 'gfpdf_post_tools_settings_page', [ $this->view, 'uninstaller' ], 5 );
- /src/view/html/Settings/tools.php
- do_action( 'gfpdf_post_tools_settings_page' );