
| Current Path : /var/www/html/ift/web/core/modules/menu_link_content/src/ |
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/ift/web/core/modules/menu_link_content/src/MenuLinkContentStorageInterface.php |
<?php
namespace Drupal\menu_link_content;
use Drupal\Core\Entity\ContentEntityStorageInterface;
/**
* Defines an interface for menu_link_content entity storage classes.
*/
interface MenuLinkContentStorageInterface extends ContentEntityStorageInterface {
/**
* Gets a list of menu link IDs with pending revisions.
*
* @return int[]
* An array of menu link IDs which have pending revisions, keyed by their
* revision IDs.
*
* @internal
*/
public function getMenuLinkIdsWithPendingRevisions();
}