You are here

function nitro_admin_paths in Arctica Nitro 7

Implements hook_admin_paths().

File

./nitro.module, line 40
Module file for Arctica Nitro.

Code

function nitro_admin_paths() {
  $paths = array();
  if (module_exists('color')) {
    $paths['admin/appearance/settings/*'] = FALSE;
  }
  return $paths;
}