You are here

protected function SupportTicketPermissions::buildPermissions in Support Ticketing System 8

Builds a standard list of support ticket permissions for a given type.

Parameters

\Drupal\support_ticket\Entity\SupportTicketType $type: The machine name of the support ticket type.

Return value

array An array of permission names and descriptions.

1 call to SupportTicketPermissions::buildPermissions()
SupportTicketPermissions::supportTicketTypePermissions in modules/support_ticket/src/SupportTicketPermissions.php
Gets an array of support ticket type permissions.

File

modules/support_ticket/src/SupportTicketPermissions.php, line 48
Contains \Drupal\support_ticket\SupportTicketPermissions.

Class

SupportTicketPermissions
Defines a class containing permission callbacks.

Namespace

Drupal\support_ticket

Code

protected function buildPermissions(SupportTicketType $type) {
  $type_id = $type
    ->id();
  $type_params = array(
    '%type_name' => $type
      ->label(),
  );
  return array(
    "create {$type_id} ticket" => array(
      'title' => $this
        ->t('%type_name: Create new ticket', $type_params),
    ),
    "edit own {$type_id} ticket" => array(
      'title' => $this
        ->t('%type_name: Edit own ticket', $type_params),
    ),
    "edit any {$type_id} ticket" => array(
      'title' => $this
        ->t('%type_name: Edit any ticket', $type_params),
    ),
    "delete own {$type_id} ticket" => array(
      'title' => $this
        ->t('%type_name: Delete own ticket', $type_params),
    ),
    "delete any {$type_id} ticket" => array(
      'title' => $this
        ->t('%type_name: Delete any ticket', $type_params),
    ),
    "view {$type_id} revisions" => array(
      'title' => $this
        ->t('%type_name: View revisions', $type_params),
    ),
    "modify locked {$type_id} ticket" => array(
      'title' => $this
        ->t('%type_name: Modify locked ticket', $type_params),
    ),
    "revert {$type_id} revisions" => array(
      'title' => $this
        ->t('%type_name: Revert revisions', $type_params),
      'description' => t('Role requires permission <em>view revisions</em> and <em>edit rights</em> for support tickets in question, or <em>administer support tickets</em>.'),
    ),
    "delete {$type_id} revisions" => array(
      'title' => $this
        ->t('%type_name: Delete revisions', $type_params),
      'description' => $this
        ->t('Role requires permission to <em>view revisions</em> and <em>delete rights</em> for support tickets in question, or <em>administer support tickets</em>.'),
    ),
  );
}