You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
342 B
15 lines
342 B
<?php |
|
|
|
/** |
|
* @file |
|
* hocr_sanitizer.module |
|
*/ |
|
|
|
/** |
|
* Implements hook_help(). |
|
*/ |
|
function hocr_sanitizer_help($route_name, $route_match) { |
|
if ($route_name == 'help.page.hocr_sanitizer') { |
|
return t('The HOCR Sanitizer module batch-renames managed files ending in _HOCR.txt to .html and updates their MIME type to text/html.'); |
|
} |
|
}
|
|
|