33 lines
603 B
PHP
33 lines
603 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Sonata Project package.
|
|
*
|
|
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Sonata\BlockBundle\Menu;
|
|
|
|
/**
|
|
* @author Christian Gripp <mail@core23.de>
|
|
*/
|
|
interface MenuRegistryInterface
|
|
{
|
|
/**
|
|
* Adds a new menu.
|
|
*
|
|
* @param string $name
|
|
*/
|
|
public function add($name);
|
|
|
|
/**
|
|
* Returns all alias names.
|
|
*
|
|
* @return string[]
|
|
*/
|
|
public function getAliasNames();
|
|
}
|