
| Current Path : /var/www/html/store/web/modules/contrib/entity/src/Menu/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/store/web/modules/contrib/entity/src/Menu/EntityLocalTaskProviderInterface.php |
<?php
namespace Drupal\entity\Menu;
use Drupal\Core\Entity\EntityTypeInterface;
/**
* Provides an interface for entity local task providers.
*/
interface EntityLocalTaskProviderInterface {
/**
* Builds local tasks for the given entity type.
*
* @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
* The entity type.
*
* @return array[]
* An array of local task definitions.
*/
public function buildLocalTasks(EntityTypeInterface $entity_type);
}