You are here

function highcharttable_help in HighchartTable 7

Implements hook_help().

File

./highcharttable.module, line 336
highcharttable.module

Code

function highcharttable_help($path, $arg) {
  switch ($path) {
    case 'admin/help#highcharttable':
      $t = t('Configuration instructions and tips are in this <a target="readme" href="@README">README</a> file.<br/>Known issues and solutions may be found on the <a taget="project" href="@highcharttable">HighchartTable</a> project page.', array(
        '@README' => url(drupal_get_path('module', 'highcharttable') . '/README.txt'),
        '@highcharttable' => url('http://drupal.org/project/highcharttable'),
      ));
      break;
    case 'admin/config/content/highcharttable':
      $t = t('A <strong>chart decoration</strong> consists of a set of chart options, selected below. Apart from the features you wish to include in each chart decoration, you specify the pages the chart(s) should appear on.');
      break;
  }
  return empty($t) ? '' : '<p>' . $t . '</p>';
}