View source
<?php
namespace Drupal\paragraphs_grid\Form;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Entity\EntityFieldManagerInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class ParagraphsGridConfigForm extends ConfigFormBase {
protected $entityTypeManager;
protected $entityFieldManager;
protected $grids;
public function __construct(ConfigFactoryInterface $config_factory, EntityTypeManagerInterface $entity_type_manager, EntityFieldManagerInterface $entity_field_manager) {
parent::__construct($config_factory);
$this->entityTypeManager = $entity_type_manager;
$this->entityFieldManager = $entity_field_manager;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('config.factory'), $container
->get('entity_type.manager'), $container
->get('entity_field.manager'));
}
protected function getEditableConfigNames() {
return [
'paragraphs_grid.settings',
];
}
protected function getGrids() {
if (!$this->grids) {
$this->grids = $this->entityTypeManager
->getStorage('grid_entity')
->loadMultiple();
}
return $this->grids;
}
protected function getGridTypeOptions() {
$options = [];
foreach ($this
->getGrids() as $grid) {
$options['paragraphs_grid.grid_entity.' . $grid
->id()] = $grid
->label();
}
return $options;
}
public function getFormId() {
return 'paragraphs_grid_config_form';
}
public function buildForm(array $form, FormStateInterface $form_state) {
$field_map = $this->entityFieldManager
->getFieldMapByFieldType('grid_field_type');
if (count($field_map) && in_array('administrator', $this
->currentUser()
->getRoles())) {
$this
->messenger()
->addWarning('Grid classes of current type are already in use. Data will be lost if you change the grid type.');
$disable_grid_type = FALSE;
}
elseif (count($field_map)) {
$disable_grid_type = TRUE;
}
else {
$disable_grid_type = FALSE;
}
$config = $this
->config('paragraphs_grid.settings');
$form['gridtype'] = [
'#type' => 'radios',
'#title' => $this
->t('Grid type'),
'#description' => $this
->t('Select the grid type you want to use. If you do not find your grid, you can create your own. Follow instructions on http://drupal.org/project/paragraphs_grid.'),
'#options' => $this
->getGridTypeOptions(),
'#default_value' => $config
->get('gridtype'),
'#disabled' => $disable_grid_type,
];
$use_css = $this
->t('Use CSS delivered from Paragraphs Grid');
$form['uselibrary'] = [
'#type' => 'checkbox',
'#title' => $use_css,
'#description' => $this
->t('Disable this checkbox, if your theme already includes the grid css and javascript.'),
'#default_value' => $config
->get('uselibrary'),
];
$form['use_lib_admin_pages'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Load grid-CSS even on administration pages.'),
'#description' => $this
->t('Enable if grids are displayed on admin pages. Has no effect if the Option "%above" is disabled', [
'%above' => $use_css,
]),
'#default_value' => $config
->get('use_lib_admin_pages'),
];
return parent::buildForm($form, $form_state);
}
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
$this
->config('paragraphs_grid.settings')
->set('gridtype', $form_state
->getValue('gridtype'))
->set('uselibrary', $form_state
->getValue('uselibrary'))
->set('use_lib_admin_pages', $form_state
->getValue('use_lib_admin_pages'))
->save();
}
}