wpcrm_system_settings_tab

The wpcrm_system_settings_tab action allows you to create new tabs on the WP-CRM System Dashboard.

The action can be used with the global variable $wpcrm_active_tab to determine what the active tab is.

if(!function_exists('wpcrm_system_default_setting_tab')){
     function wpcrm_system_default_setting_tab() {
         global $wpcrm_active_tab;
        // do something here
    }
}