You are here

function media_acquiadam_help in Media: Acquia DAM 7

Implements hook_help().

File

./media_acquiadam.module, line 230

Code

function media_acquiadam_help($path, $arg) {
  switch ($path) {
    case 'admin/help#media_acquiadam':
      $output = '<h3>' . t('About Media: Acquia DAM') . '</h3>';
      $output .= '<p>' . t('Media: Acquia DAM provides Acquia DAM integration within the Drupal site. This integration allows Drupal users with Acquia DAM accounts to browse assets they have access to and create Drupal files that reference these assets.') . '</p>';
      $output .= '<p>' . t('Once an asset is referenced within Drupal normal Drupal permission mechanisms will take over.') . '</p>';
      $output .= '<p>' . t('DAM permissions will still apply to the CDN-rendered images.') . '</p>';
      return $output;
  }
}