PanelizerIPEController.php in Lightning Workflow 8
Same filename and directory in other branches
Namespace
Drupal\lightning_workflow\ControllerFile
src/Controller/PanelizerIPEController.phpView source
<?php
namespace Drupal\lightning_workflow\Controller;
use Drupal\Core\Entity\FieldableEntityInterface;
use Drupal\panelizer\Controller\PanelizerPanelsIPEController;
use Drupal\panelizer\PanelizerInterface;
use Drupal\content_moderation\ModerationInformationInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Controller for Panels IPE routes that are specific to Panelizer.
*/
class PanelizerIPEController extends PanelizerPanelsIPEController {
/**
* The moderation information service.
*
* @var \Drupal\content_moderation\ModerationInformationInterface
*/
protected $modInfo;
/**
* PanelizerIPEController constructor.
*
* @param PanelizerInterface $panelizer
* The Panelizer service.
* @param ModerationInformationInterface $mod_info
* The moderation information service.
*/
public function __construct(PanelizerInterface $panelizer, ModerationInformationInterface $mod_info) {
parent::__construct($panelizer);
$this->modInfo = $mod_info;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('panelizer'), $container
->get('content_moderation.moderation_information'));
}
/**
* {@inheritdoc}
*/
public function revertToDefault(FieldableEntityInterface $entity, $view_mode) {
if ($this->modInfo
->isModeratedEntity($entity)) {
$entity = $this->modInfo
->getLatestRevision($entity
->getEntityTypeId(), $entity
->id());
}
return parent::revertToDefault($entity, $view_mode);
}
}
Classes
Name | Description |
---|---|
PanelizerIPEController | Controller for Panels IPE routes that are specific to Panelizer. |