You are here

function ds_extras_admin_paths in Display Suite 7.2

Same name and namespace in other branches
  1. 7 modules/ds_extras/ds_extras.module \ds_extras_admin_paths()

Implements hook_admin_paths().

File

modules/ds_extras/ds_extras.module, line 109
Display Suite extras main functions.

Code

function ds_extras_admin_paths() {
  if (variable_get('node_admin_theme')) {
    return array(
      'node/*/display' => TRUE,
      'user/*/display' => TRUE,
      'taxonomy/term/*/display' => TRUE,
    );
  }
}