You are here

function google_analytics_reports_custom_theme in Google Analytics Reports 7.3

However config page should still use the admin theme.

Implements hook_custom_theme().

File

google_analytics_reports_api/google_analytics_reports_api.module, line 262
Implements the API through which Google Analytics data can be accessed.

Code

function google_analytics_reports_custom_theme() {
  if ('admin/config/system/google-analytics-reports-api' == current_path()) {
    return variable_get('admin_theme', 'seven');
  }
}