You are here

paths.inc in Javascript Tools 5

Define paths to exclude from dynamic loading.

File

dynamicload/paths.inc
View source
<?php

/**
 * @file
 *  Define paths to exclude from dynamic loading.
 */
function views_bookmark_dynamicload_paths() {
  return array(
    'views_bookmark*',
  );
}
function fivestar_dynamicload_paths() {
  return array(
    'fivestar/vote*',
  );
}
function fasttoggle_dynamicload_paths() {
  return array(
    '*/toggle/*',
  );
}
function user_dynamicload_paths() {
  return array(
    'logout',
    'user/login',
    'user/register',
  );
}

Functions