public function SimplifyAdminForm::buildForm in Simplify 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/ SimplifyAdminForm.php, line 63
Class
- SimplifyAdminForm
- Configure simplify global configurations.
Namespace
Drupal\simplify\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
// Admin user permission.
$form['simplify_admin'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Hide fields from admin users.'),
'#description' => $this
->t("By default, Drupal gives User 1 and admin users <em>all</em> permissions (including Simplify's <em>View hidden fields</em> permission). This means that those users will always be able to view all hidden fields (and is by design).<br>Check this box to override this functionality and hide fields from any users. NOTE: As this option overrides default Drupal behaviour, it should be used sparingly and only when you fully understand the consequences."),
'#default_value' => _simplify_get_config_value('simplify_admin', FALSE),
];
// Nodes.
if ($this->moduleHandler
->moduleExists('node')) {
$form['nodes'] = [
'#type' => 'details',
'#title' => $this
->t('Nodes'),
'#description' => $this
->t("These fields will be hidden from <em>all</em> node forms. Alternatively, to hide fields from node forms of a particular content type, edit the content type and configure the hidden fields there."),
'#open' => TRUE,
];
$form['nodes']['simplify_nodes_global'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Simplify the following options'),
'#options' => simplify_get_fields('nodes'),
'#default_value' => _simplify_get_config_value('simplify_nodes_global'),
];
}
// Users.
if ($this->moduleHandler
->moduleExists('user')) {
$form['users'] = [
'#type' => 'details',
'#title' => $this
->t('Users'),
'#description' => $this
->t("These fields will be hidden from all user account forms."),
'#open' => TRUE,
];
$form['users']['simplify_users_global'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Simplify the following options'),
'#options' => simplify_get_fields('users'),
'#default_value' => _simplify_get_config_value('simplify_users_global'),
];
}
// Comments.
if ($this->moduleHandler
->moduleExists('comment')) {
$form['comments'] = [
'#type' => 'details',
'#title' => $this
->t('Comments'),
'#description' => $this
->t("These fields will be hidden from <em>all</em> comment forms. Alternatively, to hide fields from comment forms for comments of a particular comment type, edit the comment type and configure the hidden fields there."),
'#open' => TRUE,
];
$form['comments']['simplify_comments_global'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Simplify the following options'),
'#options' => simplify_get_fields('comments'),
'#default_value' => _simplify_get_config_value('simplify_comments_global'),
];
}
// Taxonomy.
if ($this->moduleHandler
->moduleExists('taxonomy')) {
$form['taxonomy'] = [
'#type' => 'details',
'#title' => $this
->t('Taxonomy'),
'#description' => $this
->t("These fields will be hidden from <em>all</em> taxonomy term forms. Alternatively, to hide fields from taxonomy term forms for a particular vocabulary, edit the vocabulary and configure the hidden fields there."),
'#open' => TRUE,
];
$form['taxonomy']['simplify_taxonomies_global'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Simplify the following options'),
'#options' => simplify_get_fields('taxonomy'),
'#default_value' => _simplify_get_config_value('simplify_taxonomies_global'),
];
}
// Blocks.
if ($this->moduleHandler
->moduleExists('block')) {
$form['blocks'] = [
'#type' => 'details',
'#title' => $this
->t('Blocks'),
'#description' => $this
->t("These fields will be hidden from <em>all</em> blocks forms. Alternatively, to hide fields from block forms of a particular block type, edit the block type and configure the hidden fields there."),
'#open' => TRUE,
];
$form['blocks']['simplify_blocks_global'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Simplify the following options'),
'#options' => simplify_get_fields('blocks'),
'#default_value' => _simplify_get_config_value('simplify_blocks_global'),
];
}
// Profiles.
if ($this->moduleHandler
->moduleExists('profile2_page')) {
$form['profiles'] = [
'#type' => 'details',
'#title' => $this
->t('Profiles'),
'#description' => $this
->t("These fields will be hidden from all profile forms."),
'#open' => TRUE,
];
$form['profiles']['simplify_profiles_global'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Simplify the following options'),
'#options' => simplify_get_fields('profiles'),
'#default_value' => _simplify_get_config_value('simplify_profiles_global'),
];
}
// Remove empty values from saved variables.
// (see: http://drupal.org/node/61760#comment-402631)
$form['array_filter'] = [
'#type' => 'hidden',
];
return parent::buildForm($form, $form_state);
}