function file_entity_help in File Entity (fieldable files) 7
Same name and namespace in other branches
- 8.2 file_entity.module \file_entity_help()
- 7.3 file_entity.module \file_entity_help()
- 7.2 file_entity.module \file_entity_help()
Implements hook_help().
File
- ./
file_entity.module, line 21 - Extends Drupal file entities to be fieldable and viewable.
Code
function file_entity_help($path, $arg) {
switch ($path) {
case 'admin/config/media/file-types':
$output = '<p>' . t('When a file is uploaded to this website, it is assigned one of the following types, based on what kind of file it is.') . '</p>';
return $output;
}
}