Skip to content

Commit

Permalink
Merge pull request #845 from City-of-Helsinki/UHF-10771
Browse files Browse the repository at this point in the history
UHF-10771
  • Loading branch information
jeremysteerio authored Nov 28, 2024
2 parents 650a397 + fa883fa commit e8e2bc8
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions modules/hdbt_admin_tools/hdbt_admin_tools.module
Original file line number Diff line number Diff line change
Expand Up @@ -533,19 +533,20 @@ function hdbt_admin_tools_entity_bundle_field_info_alter(&$fields, EntityTypeInt
}

/**
* Implements hook_field_widget_WIDGET_TYPE_form_alter().
*
* Hero designs:
* background-image = "Background image"
* diagonal = "Diagonal"
* with-image-bottom = "Image on the bottom"
* with-image-left = "Image on the left"
* with-image-right = "Image on the right"
* without-image-center = "Without image, align center"
* without-image-left = "Without image, align left"
* with-search = "With search"
* Implements hook_field_widget_single_element_WIDGET_TYPE_form_alter().
*/
function hdbt_admin_tools_field_widget_paragraphs_form_alter(&$element, &$form_state, $context): void {
function hdbt_admin_tools_field_widget_single_element_paragraphs_form_alter(&$element, &$form_state, $context): void {
/* Hero designs:
*
* background-image = "Background image"
* diagonal = "Diagonal"
* with-image-bottom = "Image on the bottom"
* with-image-left = "Image on the left"
* with-image-right = "Image on the right"
* without-image-center = "Without image, align center"
* without-image-left = "Without image, align left"
* with-search = "With search"
*/

// Early return if paragraph type is not set.
if (!isset($element['#paragraph_type'])) {
Expand Down

0 comments on commit e8e2bc8

Please sign in to comment.