You are here

function hook_jqmulti_files in jQuery Multi 7

Same name and namespace in other branches
  1. 6 jqmulti.api.php \hook_jqmulti_files()

Add files to be loaded with jQuery Multi's jQuery library

Return value

An array of full paths to files that should be loaded with the jqmulti's jQuery library (paths are relative to Drupal root)

1 invocation of hook_jqmulti_files()
jqmulti_get_files in ./jqmulti.module
Returns a list of files that should be loaded with the second jQuery.

File

./jqmulti.api.php, line 19
API documentation for the jQuery Multi module

Code

function hook_jqmulti_files() {
  return array(
    'path/to/file.js',
    'another/full/file/path.js',
  );
}