function UnpublishByKeywordNode::buildConfigurationForm

Same name and namespace in other branches
  1. 9 core/modules/node/src/Plugin/Action/UnpublishByKeywordNode.php \Drupal\node\Plugin\Action\UnpublishByKeywordNode::buildConfigurationForm()
  2. 8.9.x core/modules/node/src/Plugin/Action/UnpublishByKeywordNode.php \Drupal\node\Plugin\Action\UnpublishByKeywordNode::buildConfigurationForm()
  3. 10 core/modules/node/src/Plugin/Action/UnpublishByKeywordNode.php \Drupal\node\Plugin\Action\UnpublishByKeywordNode::buildConfigurationForm()

Overrides PluginFormInterface::buildConfigurationForm

File

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

Class

UnpublishByKeywordNode
Unpublishes a node containing certain keywords.

Namespace

Drupal\node\Plugin\Action

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
    $form['keywords'] = [
        '#title' => $this->t('Keywords'),
        '#type' => 'textarea',
        '#description' => $this->t('The content will be unpublished if it contains any of the phrases above. Use a case-sensitive, comma-separated list of phrases. Example: funny, bungee jumping, "Company, Inc."'),
        '#default_value' => Tags::implode($this->configuration['keywords']),
    ];
    return $form;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.