mediamosa_statistics_help

Versions
mediamosa-21
mediamosa_statistics_help($path, $arg)

Implements hook_help().

Code

sites/all/modules/mediamosa/modules/statistics/mediamosa_statistics.module, line 340

<?php
function mediamosa_statistics_help($path, $arg) {
  global $base_url;

  switch ($path) {
    case 'admin/mediamosa/statistics':
      return '<p>' . t('Browse through collected statistics of MediaMosa.') . '</p>';
    case 'admin/mediamosa/statistics/latestmediafiles':
      return '<p>' . t('This page displays a list of the 150 latest uploaded mediafiles.') . '</p>';
    case 'admin/mediamosa/statistics/popularmediafiles':
      return '<p>' . t('This page displays a list of the 150 popular uploaded mediafiles.') . '</p>';
    case 'admin/mediamosa/statistics/latestcollections':
      return '<p>' . t('This page displays a list of the 150 latest created collections.') . '</p>';
    case 'admin/mediamosa/statistics/popularcollections':
      return '<p>' . t('This page displays a list of the 150 popular collections.') . '</p>';
    case 'admin/mediamosa/statistics/diskspaceusage':
      return '<p>' . t('This page displays a list of the disk usage per container.') . '</p>';
    case 'admin/mediamosa/statistics/streamrequests':
      return '<p>' . t('This page displays a list of requested streams. Note that this overview gives the number of created symlinks, not the eventually streamed mediafiles.') . '</p>';
    case 'admin/mediamosa/statistics/popularstreams':
      return '<p>' . t('This page displays a list of the most popular requested streams. Note that this overview gives the number of created symlinks, not the eventually streamed mediafiles.') . '</p>';
    case 'admin/mediamosa/statistics/searchwords':
      return '<p>' . t('This page displays a list of the 150 most searched words for a period.') . '</p>';

  }
}
?>