Registers the hooks for the API-API configuration data.
Description
See also
Source
File: src/modules/actions/module.php
protected function register_api_config_data_hook() { foreach ( $this->submodules as $slug => $action ) { if ( ! is_a( $action, API_Action_Interface::class ) ) { continue; } $action->register_config_data_hook(); } }
Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |