You are here

public function UserMatcher::buildConfigurationForm in Linkit 8.5

Same name and namespace in other branches
  1. 8.4 src/Plugin/Linkit/Matcher/UserMatcher.php \Drupal\linkit\Plugin\Linkit\Matcher\UserMatcher::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 EntityMatcher::buildConfigurationForm

File

src/Plugin/Linkit/Matcher/UserMatcher.php, line 60

Class

UserMatcher
Provides specific linkit matchers for the user entity type.

Namespace

Drupal\linkit\Plugin\Linkit\Matcher

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
  $form = parent::buildConfigurationForm($form, $form_state);
  $form['role_restrictions'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Role restrictions'),
    '#open' => TRUE,
    '#weight' => -90,
  ];
  $form['role_restrictions']['roles'] = [
    '#type' => 'checkboxes',
    '#title' => $this
      ->t('Restrict to the selected roles'),
    '#options' => array_diff_key(user_role_names(TRUE), [
      RoleInterface::AUTHENTICATED_ID => RoleInterface::AUTHENTICATED_ID,
    ]),
    '#default_value' => $this->configuration['roles'],
    '#description' => $this
      ->t('If none of the checkboxes is checked, all roles are allowed.'),
    '#element_validate' => [
      [
        get_class($this),
        'elementValidateFilter',
      ],
    ],
  ];
  $form['blocked_users'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Blocked users'),
    '#open' => TRUE,
  ];
  $form['blocked_users']['include_blocked'] = [
    '#title' => $this
      ->t('Include blocked user'),
    '#type' => 'checkbox',
    '#default_value' => $this->configuration['include_blocked'],
    '#description' => $this
      ->t('In order to see blocked users, users must have permissions to do so.'),
  ];
  return $form;
}