function tripal_bulk_loader_init

2.x tripal_bulk_loader.module tripal_bulk_loader_init()
3.x tripal_bulk_loader.module tripal_bulk_loader_init()
1.x tripal_bulk_loader.module tripal_bulk_loader_init()

Implements hook_init Used to add stylesheets and javascript files to the header

Related topics

File

tripal_bulk_loader/tripal_bulk_loader.module, line 23
The functions for the Tripal bulk loader.

Code

function tripal_bulk_loader_init() {
  // Add javascript and style sheet
  drupal_add_css(drupal_get_path('theme', 'tripal') . '/css/tripal_bulk_loader.css');
  drupal_add_js(drupal_get_path('theme', 'tripal') . '/js/tripal_bulk_loader.js');
}