Tribe__Tickets_Plus__Commerce__EDD__Orders__Report::__construct()
Hooks the actions and filter required by the class.
Source
File: src/Tribe/Commerce/EDD/Orders/Report.php
public function __construct() {
add_filter( 'post_row_actions', array( $this, 'add_orders_row_action' ), 10, 2 );
add_action( 'admin_menu', array( $this, 'register_orders_page' ) );
add_filter( 'tribe_filter_attendee_order_link', array( $this, 'filter_editor_orders_link' ), 10, 2 );
// register the tabbed view
$edd_tabbed_view = new Tribe__Tickets_Plus__Commerce__EDD__Tabbed_View__Report_Tabbed_View();
$edd_tabbed_view->register();
}
Changelog
| Version | Description |
|---|---|
| 4.10 | Introduced. |