You are here

function supersized_admin_paths in Supersized 7

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

Implements hook_admin_paths().

File

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

Code

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