You are here

function webform_image_select_webform_help_info in Webform 6.x

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

Implements hook_webform_help_info().

File

modules/webform_image_select/webform_image_select.module, line 13
Provides a webform element for a selecting an image.

Code

function webform_image_select_webform_help_info() {
  $help = [];
  $help['config_image_select_images'] = [
    'group' => 'configuration',
    'title' => t('Configuration: Images'),
    'content' => t('The <strong>Images configuration</strong> page lists reusable images for the image select element.'),
    'routes' => [
      // @see /admin/structure/webform/options/images
      'entity.webform_image_select_images.collection',
    ],
  ];
  return $help;
}