You are here

function varbase_tweaks_admin_paths_alter in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 7.2

Implements hook_admin_paths().

File

modules/custom/varbase_tweaks/varbase_tweaks.module, line 34
Applies some tweaks for a more usable and standardized Drupal site.

Code

function varbase_tweaks_admin_paths_alter(&$paths) {
  $paths['user'] = FALSE;
  $paths['user/*'] = FALSE;
}