wpcrm_system_report_tab

The wpcrm_system_report_tab action generates the tabs at the top of the WP-CRM System > Reports page. By default, the tabs include:

  • Overview
  • Project
  • Task
  • Opportunity
  • Organization
  • Contact
  • Campaign

Usage:

add_action( 'wpcrm_system_report_tab', 'wpcrm_system_report_overview_tab', 1 ); 
function wpcrm_system_report_overview_tab() { 
    global $wpcrm_reports_active_tab; 
    // do something here
}