You are here

function webform_templates_webform_help_info in Webform 8.5

Same name and namespace in other branches
  1. 6.x modules/webform_templates/webform_templates.module \webform_templates_webform_help_info()

Implements hook_webform_help_info().

File

modules/webform_templates/webform_templates.module, line 24
Provides starter templates that can be used to create new webforms.

Code

function webform_templates_webform_help_info() {
  $help = [];
  $help['webform_templates'] = [
    'group' => 'forms',
    'title' => t('Templates'),
    'content' => t('The <strong>Templates</strong> page lists reusable templates that can be duplicated and customized to create new webforms.'),
    'video_id' => 'forms',
    'routes' => [
      // @see /admin/structure/webform/templates
      'entity.webform.templates',
    ],
  ];
  return $help;
}