You are here

public function AssignOwnerNode::buildConfigurationForm in Drupal 8

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

Form constructor.

Plugin forms are embedded in other forms. In order to know where the plugin form is located in the parent form, #parents and #array_parents must be known, but these are not available during the initial build phase. In order to have these properties available when building the plugin form's elements, let this method return a form element that has a #process callback and build the rest of the form in the callback. By the time the callback is executed, the element's #parents and #array_parents properties will have been set by the form API. For more documentation on #parents and #array_parents, see \Drupal\Core\Render\Element\FormElement.

Parameters

array $form: An associative array containing the initial structure of the plugin form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Calling code should pass on a subform state created through \Drupal\Core\Form\SubformState::createForSubform().

Return value

array The form structure.

Overrides PluginFormInterface::buildConfigurationForm

File

core/modules/node/src/Plugin/Action/AssignOwnerNode.php, line 78

Class

AssignOwnerNode
Assigns ownership of a node to a user.

Namespace

Drupal\node\Plugin\Action

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
  $description = t('The username of the user to which you would like to assign ownership.');
  $count = $this->connection
    ->query("SELECT COUNT(*) FROM {users}")
    ->fetchField();

  // Use dropdown for fewer than 200 users; textbox for more than that.
  if (intval($count) < 200) {
    $options = [];
    $result = $this->connection
      ->query("SELECT uid, name FROM {users_field_data} WHERE uid > 0 AND default_langcode = 1 ORDER BY name");
    foreach ($result as $data) {
      $options[$data->uid] = $data->name;
    }
    $form['owner_uid'] = [
      '#type' => 'select',
      '#title' => t('Username'),
      '#default_value' => $this->configuration['owner_uid'],
      '#options' => $options,
      '#description' => $description,
    ];
  }
  else {
    $form['owner_uid'] = [
      '#type' => 'entity_autocomplete',
      '#title' => t('Username'),
      '#target_type' => 'user',
      '#selection_setttings' => [
        'include_anonymous' => FALSE,
      ],
      '#default_value' => User::load($this->configuration['owner_uid']),
      // Validation is done in static::validateConfigurationForm().
      '#validate_reference' => FALSE,
      '#size' => '6',
      '#maxlength' => '60',
      '#description' => $description,
    ];
  }
  return $form;
}