You are here

function supersized_admin_paths in Supersized 8

Same name and namespace in other branches
  1. 7 supersized.module \supersized_admin_paths()

Implements hook_admin_paths().

File

./supersized.module, line 472
Supersized module file.

Code

function supersized_admin_paths() {
  if (variable_get('node_admin_theme')) {
    $paths = array(
      'node/*/supersized' => TRUE,
    );
    return $paths;
  }
}