You are here

function webform_chart_help in Webform Chart 7.2

Same name and namespace in other branches
  1. 7 webform_chart.module \webform_chart_help()

Implements hook_help().

Displays help and module information.

File

./webform_chart.module, line 31
webform_chart.module

Code

function webform_chart_help($section, $arg) {
  switch ($section) {
    case "admin/help#webform_chart":
      return '<p>' . t("Provides graphical rendering of Webform results as charts") . '</p>';
  }
}