Upgraded imagemagick and manually altered pdf to image module to handle changes....
[yaffs-website] / web / modules / contrib / entity / src / EntityPermissionProviderInterface.php
1 <?php
2
3 namespace Drupal\entity;
4
5 use Drupal\Core\Entity\EntityTypeInterface;
6
7 /**
8  * Allows entity types to provide permissions.
9  */
10 interface EntityPermissionProviderInterface {
11
12   /**
13    * Builds permissions for the given entity type.
14    *
15    * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
16    *   The entity type.
17    *
18    * @return array
19    *   The permissions.
20    */
21   public function buildPermissions(EntityTypeInterface $entity_type);
22
23 }