public function BlockContentModerationHandler::enforceRevisionsBundleFormAlter in Drupal 9
Same name and namespace in other branches
- 8 core/modules/content_moderation/src/Entity/Handler/BlockContentModerationHandler.php \Drupal\content_moderation\Entity\Handler\BlockContentModerationHandler::enforceRevisionsBundleFormAlter()
- 10 core/modules/content_moderation/src/Entity/Handler/BlockContentModerationHandler.php \Drupal\content_moderation\Entity\Handler\BlockContentModerationHandler::enforceRevisionsBundleFormAlter()
Alters bundle forms to enforce revision handling.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
string $form_id: The form id.
Overrides ModerationHandler::enforceRevisionsBundleFormAlter
See also
File
- core/
modules/ content_moderation/ src/ Entity/ Handler/ BlockContentModerationHandler.php, line 27
Class
- BlockContentModerationHandler
- Customizations for block content entities.
Namespace
Drupal\content_moderation\Entity\HandlerCode
public function enforceRevisionsBundleFormAlter(array &$form, FormStateInterface $form_state, $form_id) {
$form['revision']['#default_value'] = 1;
$form['revision']['#disabled'] = TRUE;
$form['revision']['#description'] = $this
->t('Revisions must be required when moderation is enabled.');
}