- Issue created by @mglaman
- π©πͺGermany marcus_johansson
Looks good and tested and working, thanks mglaman!
Automatically closed - issue fixed for 2 weeks with no activity.
hook_field_widget_single_element_form_alter performs unnecessary logic if there is no alt text field or the user does not have permission
// Attach JS.
$element['#attached']['library'][] = 'ai_image_alt_text/alt_text';
// Get the entities language or the sites default language.
$form_object = $form_state->getFormObject();
$config = \Drupal::config('ai_image_alt_text.settings');
$lang = method_exists($form_object, 'getEntity') ? $form_object->getEntity()->language()->getId() : \Drupal::languageManager()->getDefaultLanguage()->getId();
$element['#attached']['drupalSettings']['ai_image_alt_text']['lang'] = $lang;
$element['#attached']['drupalSettings']['ai_image_alt_text']['autogenerate'] = $config->get('autogenerate');
$element['#attached']['drupalSettings']['ai_image_alt_text']['hide_button'] = $config->get('hide_button');
// Only run if alt text field is enabled.
if (empty($element['#alt_field'])) {
return;
}
// Only show if the user has permission to generate alt text.
if (!\Drupal::currentUser()->hasPermission('generate ai alt tags')) {
return;
}
Move this code to _after_ return checks
// Attach JS.
$element['#attached']['library'][] = 'ai_image_alt_text/alt_text';
// Get the entities language or the sites default language.
$form_object = $form_state->getFormObject();
$config = \Drupal::config('ai_image_alt_text.settings');
$lang = method_exists($form_object, 'getEntity') ? $form_object->getEntity()->language()->getId() : \Drupal::languageManager()->getDefaultLanguage()->getId();
$element['#attached']['drupalSettings']['ai_image_alt_text']['lang'] = $lang;
$element['#attached']['drupalSettings']['ai_image_alt_text']['autogenerate'] = $config->get('autogenerate');
$element['#attached']['drupalSettings']['ai_image_alt_text']['hide_button'] = $config->get('hide_button');
Active
1.0
Code
Looks good and tested and working, thanks mglaman!
Automatically closed - issue fixed for 2 weeks with no activity.