Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / system / src / MenuInterface.php
1 <?php
2
3 namespace Drupal\system;
4
5 use Drupal\Core\Config\Entity\ConfigEntityInterface;
6
7 /**
8  * Provides an interface defining a menu entity.
9  */
10 interface MenuInterface extends ConfigEntityInterface {
11
12   /**
13    * Returns the description of the menu.
14    *
15    * @return string
16    *   Description of the menu.
17    */
18   public function getDescription();
19
20   /**
21    * Determines if this menu is locked.
22    *
23    * @return bool
24    *   TRUE if the menu is locked, FALSE otherwise.
25    */
26   public function isLocked();
27
28 }