public function DomainEntityUi::buildForm in Domain Access Entity 8
Form constructor.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form structure.
Overrides ConfigFormBase::buildForm
File
- src/
Form/ DomainEntityUi.php, line 57
Class
- DomainEntityUi
- Provides a form to configure domain field mappings.
Namespace
Drupal\domain_entity\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('domain_entity.settings');
$form['bypass_access_conditions'] = [
'#title' => $this
->t('Disable access rules from this module. (You can use this settings to disable the query alter, for troubleshooting)'),
'#type' => 'checkbox',
'#description' => $this
->t('When this checkbox is checked, your entities must be accessible on all domains'),
'#default_value' => $config
->get('bypass_access_conditions'),
'#weight' => -50,
];
$default_values = [];
foreach ($this->mapper
->getEnabledEntityTypes() as $type_id => $entity_type) {
$default_values[$type_id] = $type_id;
}
$form['entity_types'] = [
'#type' => 'tableselect',
'#title' => $this
->t('Activate domain access on entity types'),
'#header' => [
'type' => $this
->t('Entity type'),
'operations' => $this
->t('Operations'),
],
'#default_value' => $default_values,
'#js_select' => FALSE,
];
$rows = [];
$entity_types = $this->mapper
->getEntityTypes();
foreach ($entity_types as $entity_type_id => $definition) {
$enabled = !empty($default_values[$entity_type_id]);
$links = [];
if ($enabled) {
$links = [
'configure' => [
'title' => $this
->t('Configure'),
'url' => Url::fromRoute('domain_entity.settings', [
'entity_type_id' => $entity_type_id,
]),
],
];
}
$rows[$entity_type_id] = [
'type' => $definition
->getLabel(),
'operations' => [
'data' => [
'#type' => 'operations',
'#links' => $links,
],
],
];
}
$form['entity_types']['#options'] = $rows;
// @Todo Port active domain UI effects.
return parent::buildForm($form, $form_state);
}