MenuLinkContentStorageInterface.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\menu_link_contentFile
core/modules/menu_link_content/src/MenuLinkContentStorageInterface.phpView source
<?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();
}
Interfaces
Name | Description |
---|---|
MenuLinkContentStorageInterface | Defines an interface for menu_link_content entity storage classes. |