paths.inc in Javascript Tools 5
Define paths to exclude from dynamic loading.
File
dynamicload/paths.incView 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
Name | Description |
---|---|
fasttoggle_dynamicload_paths | |
fivestar_dynamicload_paths | |
user_dynamicload_paths | |
views_bookmark_dynamicload_paths | @file Define paths to exclude from dynamic loading. |