eternalistic
7/24/2015 - 1:57 PM

Drupal path

Drupal path

<?php

  // Get path to module and generate URL to FeaturedPhotographs JS.
  $path = drupal_get_path('module', 'aspcarousels');
  $FeaturedPhotographsJS = file_create_url($path . '/js/FeaturedPhotographs.js');
  
  // Load JS uncompressed to avoid issues with running Colorbox.
  drupal_add_js($FeaturedPhotographsJS, array('preprocess' => FALSE))

?>