You are here

function advagg_anonymous_login_paths_alter in Advanced CSS/JS Aggregation 7.2

Implements hook_anonymous_login_paths_alter().

Related topics

File

./advagg.module, line 1458
Advanced CSS/JS aggregation module.

Code

function advagg_anonymous_login_paths_alter(&$paths) {

  // Exclude advagg css/js paths.
  list($css_path, $js_path) = advagg_get_root_files_dir();
  $paths['exclude'][] = $css_path[1] . '/*';
  $paths['exclude'][] = $js_path[1] . '/*';
}