You are here

function hook_webform_image_select_images_alter in Webform 8.5

Same name and namespace in other branches
  1. 6.x modules/webform_image_select/webform_image_select.api.php \hook_webform_image_select_images_alter()

Alter webform image select images by id.

Parameters

array $images: An associative array of images.

array $element: The webform element that the images is for.

string $images_id: The webform image select images id. Set to NULL if the images are custom.

1 function implements hook_webform_image_select_images_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

webform_image_select_test_webform_image_select_images_alter in modules/webform_image_select/tests/modules/webform_image_select_test/webform_image_select_test.module
Implements hook_webform_image_select_images_alter().
1 invocation of hook_webform_image_select_images_alter()
WebformImageSelectImages::getElementImages in modules/webform_image_select/src/Entity/WebformImageSelectImages.php
Get webform image select element images.

File

modules/webform_image_select/webform_image_select.api.php, line 23
Hooks related to Webform Image Select module.

Code

function hook_webform_image_select_images_alter(array &$images, array &$element, $images_id = NULL) {
}