PMA\libraries\Menu::display PHP Method

display() public method

Prints the menu and the breadcrumbs
public display ( ) : void
return void
    public function display()
    {
        echo $this->getDisplay();
    }

Usage Example

Example #1
0
 /**
  * Table menu display test
  *
  * @return void
  */
 function testTableDisplay()
 {
     $menu = new Menu('server', 'pma_test', '');
     $this->expectOutputString($menu->getDisplay());
     $menu->display();
 }