feeds-8.x-3.0-alpha1/src/FeedsPermissions.php
src/FeedsPermissions.php
<?php
namespace Drupal\feeds;
use Drupal\Core\Routing\UrlGeneratorTrait;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\feeds\Entity\FeedType;
/**
* Defines a class containing permission callbacks.
*/
class FeedsPermissions {
use StringTranslationTrait;
use UrlGeneratorTrait;
/**
* Returns an array of content permissions.
*
* @return array
*/
public function contentPermissions() {
return [
'access feed overview' => [
'title' => $this->t('Access the Feed overview page'),
'description' => $this->t('Get an overview of <a href=":url">all feeds</a>.', [':url' => $this->url('feeds.admin')]),
],
];
}
/**
* Returns an array of feeds type permissions.
*
* @return array
*/
public function feedTypePermissions() {
$perms = [];
// Generate feeds permissions for all feeds types.
foreach (FeedType::loadMultiple() as $type) {
$perms += $this->buildPermissions($type);
}
return $perms;
}
/**
* Builds a standard list of feeds permissions for a given type.
*
* @param \Drupal\feeds\Entity\FeedType $feed_type
* The feed type object.
*
* @return array
* An array of permission names and descriptions.
*/
protected function buildPermissions(FeedType $feed_type) {
$args = ['%name' => $feed_type->label()];
$id = $feed_type->id();
return [
"view $id feeds" => [
'title' => $this->t('%name: View feeds', $args),
],
"create $id feeds" => [
'title' => $this->t('%name: Create new feeds', $args),
],
"update $id feeds" => [
'title' => $this->t('%name: Update existing feeds', $args),
],
"delete $id feeds" => [
'title' => $this->t('%name: Delete feeds', $args),
],
"import $id feeds" => [
'title' => $this->t('%name: Import feeds', $args),
],
"clear $id feeds" => [
'title' => $this->t('%name: Delete feed items', $args),
],
"unlock $id feeds" => [
'title' => $this->t('%name: Unlock feeds', $args),
'description' => $this->t('If a feed importation breaks for some reason, users with this permission can unlock it.'),
],
];
}
}
