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