public function AdministerTaxonomy::blockForm in Total Control Admin Dashboard 8.2
Same name and namespace in other branches
- 3.0.x src/Plugin/Block/AdministerTaxonomy.php \Drupal\total_control\Plugin\Block\AdministerTaxonomy::blockForm()
Returns the configuration form elements specific to this block plugin.
Blocks that need to add form elements to the normal block configuration form should implement this method.
Parameters
array $form: The form definition array for the block configuration form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The renderable form array representing the entire configuration form.
Overrides BlockPluginTrait::blockForm
File
- src/
Plugin/ Block/ AdministerTaxonomy.php, line 243
Class
- AdministerTaxonomy
- Provides a 'Administer Taxonomy'.
Namespace
Drupal\total_control\Plugin\BlockCode
public function blockForm($form, FormStateInterface $form_state) {
$form = parent::blockForm($form, $form_state);
$config = $this
->getConfiguration();
$vocabularies = $this->entityTypeManager
->getStorage('taxonomy_vocabulary')
->loadMultiple();
$vocabularies_defaults = [];
foreach ($vocabularies as $vocabulary => $object) {
if (!array_key_exists($vocabulary, $vocabularies_defaults)) {
$vocabularies_defaults[$vocabulary] = $vocabulary;
}
}
$form['total_control_admin_taxonomy'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Include Vocabularies'),
'#options' => $vocabularies_defaults,
'#default_value' => $config['total_control_admin_taxonomy'],
];
return $form;
}