BlockContentModerationHandler::enforceRevisionsBundleFormAlter

public BlockContentModerationHandler::enforceRevisionsBundleFormAlter(array &$form, FormStateInterface $form_state, $form_id)

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

hook_form_alter()

File

core/modules/content_moderation/src/Entity/Handler/BlockContentModerationHandler.php, line 24

Class

BlockContentModerationHandler
Customizations for block content entities.

Namespace

Drupal\content_moderation\Entity\Handler

Code

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.');
}
doc_Drupal
2016-10-29 08:47:02
Comments
Leave a Comment

Please login to continue.