function formassembly_help in FormAssembly 8
Implements hook_help().
File
- ./
formassembly.module, line 27 - Procedural code for formassembly module.
Code
function formassembly_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the formassembly module.
case 'help.page.formassembly':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Integrates a Drupal site with the FormAssembly service') . '</p>';
return $output;
default:
return [];
}
}