Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UHF-10771 #845

Merged
merged 5 commits into from
Nov 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -525,19 +525,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