You are here

public function ConfigurableAuthorizationPluginBase::buildRowForm in Authorization 8

Builds the authorization form row.

Return array.

Parameters

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

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

int $index: The row number of the mapping.

Overrides ConfigurableAuthorizationPluginInterface::buildRowForm

1 method overrides ConfigurableAuthorizationPluginBase::buildRowForm()
DrupalRolesConsumer::buildRowForm in authorization_drupal_roles/src/Plugin/authorization/Consumer/DrupalRolesConsumer.php
Builds the authorization form row.

File

src/Plugin/ConfigurableAuthorizationPluginBase.php, line 131

Class

ConfigurableAuthorizationPluginBase
Provides a base class for all configurable Authorization plugins.

Namespace

Drupal\authorization\Plugin

Code

public function buildRowForm(array $form, FormStateInterface $form_state, $index) : array {

  // Should be removed.
  return [];
}