You are here

function jcarousel_init in jCarousel 8.3

Same name and namespace in other branches
  1. 6.2 jcarousel.module \jcarousel_init()
  2. 7.3 jcarousel.module \jcarousel_init()
  3. 7.2 jcarousel.module \jcarousel_init()

Implementation of hook_init().

File

./jcarousel.module, line 151
Provides integration with 3rd party modules and the jCarousel library.

Code

function jcarousel_init() {

  // Global JS settings required for all carousels.
  drupal_add_js(array(
    'jcarousel' => array(
      'ajaxPath' => url('jcarousel/ajax/views'),
    ),
  ), 'setting');
}