You are here

function footnotes_menu in Footnotes 5

Same name and namespace in other branches
  1. 5.2 footnotes.module \footnotes_menu()

Implementation of hook_menu()

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 254
The Footnotes module is a filter that can be used to insert automatically numbered footnotes into Drupal texts.

Code

function footnotes_menu($may_cache) {
  if (!$may_cache) {
    drupal_add_css(drupal_get_path('module', 'footnotes') . '/footnotes.css');
  }
}