BBP_Converter::setup_actions()
Setup the default actions
Description Description
Source Source
File: includes/admin/classes/class-bbp-converter.php
public function setup_actions() {
// Attach to the admin head with our ajax requests cycle and css
add_action( 'admin_head-tools_page_bbp-converter', array( $this, 'admin_head' ) );
// Attach to the admin ajax request to process cycles
add_action( 'wp_ajax_bbp_converter_process', array( $this, 'process_callback' ) );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.1.0 | Introduced. |