public function ContentOverview::blockForm in Total Control Admin Dashboard 8.2
Same name and namespace in other branches
- 3.0.x src/Plugin/Block/ContentOverview.php \Drupal\total_control\Plugin\Block\ContentOverview::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/ ContentOverview.php, line 196
Class
- ContentOverview
- Provides a 'Content Overview'.
Namespace
Drupal\total_control\Plugin\BlockCode
public function blockForm($form, FormStateInterface $form_state) {
$form = parent::blockForm($form, $form_state);
$config = $this
->getConfiguration();
$types = $this->entityTypeManager
->getStorage('node_type')
->loadMultiple();
$type_defaults = [];
foreach ($types as $type => $object) {
if (!array_key_exists($type, $type_defaults)) {
$type_defaults[$type] = $type;
}
}
$form['total_control_types_overview'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Show post counts for the following content types'),
'#options' => $type_defaults,
'#default_value' => $config['total_control_types_overview'],
];
$form['total_control_comments_overview'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Show comment counts for the following content types'),
'#options' => $type_defaults,
'#default_value' => $config['total_control_comments_overview'],
];
$spam_options = [
0 => $this
->t('no'),
1 => $this
->t('Yes'),
];
$form['total_control_spam_overview'] = [
'#type' => 'radios',
'#title' => $this
->t('Include spam counts with comments'),
'#options' => $spam_options,
'#default_value' => $config['total_control_spam_overview'],
];
return $form;
}