maestro-3.0.1-rc2/src/MaestroEnginePermissions.php
src/MaestroEnginePermissions.php
<?php
namespace Drupal\maestro;
use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides dynamic permissions of the maestro module.
*/
class MaestroEnginePermissions implements ContainerInjectionInterface {
use StringTranslationTrait;
/**
* The entity manager.
*
* @var \Drupal\Core\Entity\EntityManagerInterface
*/
protected $entityManager;
/**
* Constructs a new MaestroEnginePermissions instance.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_manager
* The entity manager.
*/
public function __construct(EntityTypeManagerInterface $entity_manager) {
$this->entityManager = $entity_manager;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container->get('entity_type.manager'));
}
/**
* Returns an array of maestro template permissions.
*
* @return array
* An array of Maestro template permissions.
*/
public function permissions() {
$permissions = [];
$templates = $this->entityManager->getStorage('maestro_template')->loadMultiple();
uasort($templates, 'Drupal\Core\Config\Entity\ConfigEntityBase::sort');
foreach ($templates as $template) {
if ($permission = $template->id) {
$permissions['start template ' . $permission] = [
'title' => $this->t('Put the @label template into production.', ['@label' => $template->label()]),
'description' => [
'#prefix' => '<em>',
'#markup' => $this->t('Only validated templates can be put into production.'),
'#suffix' => '</em>',
],
];
}
}
return $permissions;
}
}
