
| Current Path : /var/www/html_old/abn/web/core/modules/system/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_old/abn/web/core/modules/system/src/MenuStorage.php |
<?php
namespace Drupal\system;
use Drupal\Core\Config\Entity\ConfigEntityStorage;
/**
* Defines the storage class for menu configuration entities.
*/
class MenuStorage extends ConfigEntityStorage {
/**
* Menu names have a maximum length of 32.
*
* This is based on:
* - menu_tree table schema definition,
* - \Drupal\Core\Config\Entity\ConfigEntityStorage::MAX_ID_LENGTH
* - menu_name base field on the Menu Link content entity.
*
* @see \Drupal\Core\Menu\MenuTreeStorage::schemaDefinition()
* @see \Drupal\menu_link_content\Entity\MenuLinkContent::baseFieldDefinitions()
*/
const MAX_ID_LENGTH = 32;
}