function codefilter_menu in Code Filter 5
Implementation of hook_menu()
Adds the codefilter stylesheet to the page
File
- ./
codefilter.module, line 19
Code
function codefilter_menu($may_cache) {
if (!$may_cache) {
drupal_add_css(drupal_get_path('module', 'codefilter') . '/codefilter.css');
}
}