PageManagerPanelsStorage.php in Panels 8.4
File
src/Plugin/PanelsStorage/PageManagerPanelsStorage.php
View source
<?php
namespace Drupal\panels\Plugin\PanelsStorage;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\panels\Plugin\DisplayVariant\PanelsDisplayVariant;
use Drupal\panels\Storage\PanelsStorageBase;
use Symfony\Component\DependencyInjection\ContainerInterface;
class PageManagerPanelsStorage extends PanelsStorageBase implements ContainerFactoryPluginInterface {
protected $entityTypeManager;
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityTypeManager = $entity_type_manager;
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager'));
}
protected function loadPageVariant($id) {
return $this->entityTypeManager
->getStorage('page_variant')
->load($id);
}
public function save(PanelsDisplayVariant $panels_display) {
$id = $panels_display
->getStorageId();
if ($id && ($page_variant = $this
->loadPageVariant($id))) {
$variant_plugin = $page_variant
->getVariantPlugin();
if (!$variant_plugin instanceof PanelsDisplayVariant) {
throw new \Exception("Page variant doesn't use a Panels display variant");
}
$variant_plugin
->setConfiguration($panels_display
->getConfiguration());
$page_variant
->save();
}
else {
throw new \Exception("Couldn't find page variant to store Panels display");
}
}
public function load($id) {
if ($page_variant = $this
->loadPageVariant($id)) {
$panels_display = $page_variant
->getVariantPlugin();
if (!$panels_display instanceof PanelsDisplayVariant) {
return NULL;
}
$panels_display
->setContexts($page_variant
->getContexts());
return $panels_display;
}
}
public function access($id, $op, AccountInterface $account) {
if ($op == 'change layout') {
$op = 'update';
}
if ($page_variant = $this
->loadPageVariant($id)) {
return $page_variant
->access($op, $account, TRUE);
}
return AccessResult::forbidden();
}
}