aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/Menu/MenuInterface.php
blob: 52e06a256112ea345fb0d2c06fb9981bdda3bc62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

namespace dokuwiki\Menu;

use dokuwiki\Menu\Item\AbstractItem;

/**
 * Interface MenuInterface
 *
 * Defines what a Menu provides
 */
interface MenuInterface
{
    /**
     * Get the list of action items in this menu
     *
     * @return AbstractItem[]
     */
    public function getItems();
}