You are here

public function UnpublishByKeywordNode::submitConfigurationForm in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/node/src/Plugin/Action/UnpublishByKeywordNode.php \Drupal\node\Plugin\Action\UnpublishByKeywordNode::submitConfigurationForm()
  2. 9 core/modules/node/src/Plugin/Action/UnpublishByKeywordNode.php \Drupal\node\Plugin\Action\UnpublishByKeywordNode::submitConfigurationForm()

File

core/modules/node/src/Plugin/Action/UnpublishByKeywordNode.php, line 63

Class

UnpublishByKeywordNode
Unpublishes a node containing certain keywords.

Namespace

Drupal\node\Plugin\Action

Code

public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
  $this->configuration['keywords'] = Tags::explode($form_state
    ->getValue('keywords'));
}