add_to_calendar-1.0.0-beta5/src/Form/SettingsForm.php
src/Form/SettingsForm.php
<?php
namespace Drupal\add_to_calendar\Form;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Configures the calendar link settings.
*/
class SettingsForm extends ConfigFormBase {
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* SettingsForm constructor.
*
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The config factory service.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
*/
public function __construct(ConfigFactoryInterface $config_factory, EntityTypeManagerInterface $entity_type_manager) {
parent::__construct($config_factory);
$this->entityTypeManager = $entity_type_manager;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static(
$container->get('config.factory'),
$container->get('entity_type.manager')
);
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'add_to_calendar_settings';
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return ['add_to_calendar.settings'];
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this->config('add_to_calendar.settings');
$entity_types = array_filter($this->entityTypeManager->getDefinitions(), fn($e) => $e->getGroup() === 'content');
$options = [];
foreach ($entity_types as $entity_type_id => $entity_type) {
$options[$entity_type_id] = $entity_type->getLabel();
}
asort($options);
$form['enabled_entity_types'] = [
'#type' => 'checkboxes',
'#title' => $this->t('Enable the add to calendar field for the following entity types:'),
'#description' => $this->t('Configuration for each bundle can be done on the display settings.'),
'#options' => $options,
'#default_value' => $config->get('enabled_entity_types') ?? [],
];
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
$config = $this->config('add_to_calendar.settings');
$config->set('enabled_entity_types', $form_state->getValue('enabled_entity_types'));
$config->save();
}
}
