You are here

function footnotes_init in Footnotes 6

Same name and namespace in other branches
  1. 6.2 footnotes.module \footnotes_init()

Implementation of hook_init()

Add special css for Footnotes module.

Thanks to binford2k@lug.wsu.edu for this tip and drinkypoo for the question leading up to it. http://drupal.org/node/80538

File

./footnotes.module, line 255
The Footnotes module is a filter that can be used to insert automatically numbered footnotes into Drupal texts.

Code

function footnotes_init() {
  drupal_add_css(drupal_get_path('module', 'footnotes') . '/footnotes.css');
}