You are here

function webform_options_custom_webform_help_info in Webform 6.x

Same name and namespace in other branches
  1. 8.5 modules/webform_options_custom/webform_options_custom.module \webform_options_custom_webform_help_info()

Implements hook_webform_help_info().

File

modules/webform_options_custom/webform_options_custom.module, line 13
Provides a custom options element.

Code

function webform_options_custom_webform_help_info() {
  $help = [];
  $help['config_options_custom'] = [
    'group' => 'configuration',
    'title' => t('Configuration: Custom options'),
    'content' => t('The <strong>Custom options configuration</strong> page lists reusable HTML/SVG custom options elements.'),
    'video_id' => 'custom_options',
    'routes' => [
      // @see /admin/structure/webform/options/custom
      'entity.webform_options_custom.collection',
    ],
  ];
  return $help;
}