outlayer-8.x-1.4/modules/ui/src/Controller/OutlayerListBuilder.php
modules/ui/src/Controller/OutlayerListBuilder.php
<?php
namespace Drupal\outlayer_ui\Controller;
use Drupal\Component\Utility\Html;
use Drupal\Core\Config\Entity\DraggableListBuilder;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\outlayer\Entity\OutlayerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides a listing of Outlayer optionsets.
*/
class OutlayerListBuilder extends DraggableListBuilder {
/**
* The outlayer manager.
*
* @var \Drupal\outlayer\OutlayerManagerInterface
*/
protected $manager;
/**
* {@inheritdoc}
*/
public static function createInstance(
ContainerInterface $container,
EntityTypeInterface $entity_type,
) {
$instance = new static(
$entity_type,
$container->get('entity_type.manager')->getStorage($entity_type->id())
);
$instance->manager = $container->get('outlayer.manager');
return $instance;
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'outlayer_list_form';
}
/**
* {@inheritdoc}
*/
public function buildHeader() {
$header = [
'label' => $this->t('Optionset'),
'layoutMode' => $this->t('layoutMode'),
];
return $header + parent::buildHeader();
}
/**
* {@inheritdoc}
*/
public function buildRow(EntityInterface $entity) {
$row['label'] = Html::escape($entity->label());
// Satisfy phpstan.
if ($entity instanceof OutlayerInterface) {
$row['layoutMode']['#markup'] = $entity->getOption('layoutMode');
}
return $row + parent::buildRow($entity);
}
/**
* {@inheritdoc}
*/
public function getDefaultOperations(EntityInterface $entity) {
$operations = parent::getDefaultOperations($entity);
if (isset($operations['edit'])) {
$operations['edit']['title'] = $this->t('Configure');
}
$operations['duplicate'] = [
'title' => $this->t('Duplicate'),
'weight' => 15,
'url' => $entity->toUrl('duplicate-form'),
];
if ($entity->id() == 'default') {
unset($operations['delete'], $operations['edit']);
}
return $operations;
}
/**
* Adds some descriptive text to the outlayer optionsets list.
*
* @return array
* Renderable array.
*
* @see admin/config/development/configuration/single/export
*/
public function render() {
$build['description'] = [
'#markup' => $this->t("<p>Manage the Outlayer optionsets. Optionsets are Config Entities.</p><p>By default, when this module is enabled, few optionsets are created from configuration. Use the Operations column to edit, clone and delete optionsets.<br /><strong>Important!</strong> Avoid overriding Default optionset as it is meant for Default -- checking and cleaning. Use Duplicate instead. Otherwise messes are yours.<br />Outlayer doesn't need Outlayer UI to run. It is always safe to uninstall Outlayer UI once done with optionsets.</p>"),
];
$build[] = parent::render();
return $build;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
$this->messenger()->addMessage($this->t('The optionsets order has been updated.'));
}
}
