function media_acquiadam_browser_help in Media: Acquia DAM 7
Implements hook_help().
File
- modules/
media_acquiadam_browser/ media_acquiadam_browser.module, line 82
Code
function media_acquiadam_browser_help($path, $arg) {
switch ($path) {
case 'admin/help#media_acquiadam_browser':
$output = '<h3>' . t('About Media: Acquia DAM Browser') . '</h3>';
$output .= '<p>' . t('Provides a Media Browser interface that allows users to browse assets from within the Drupal files page and on fields that use the Media style widget.') . '</p>';
return $output;
}
}