You are here

function file_entity_help in D7 Media 7

Implements hook_help().

File

file_entity/file_entity.module, line 22
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;
  }
}