PMA\libraries\Menu::__construct PHP Method

__construct() public method

Creates a new instance of Menu
public __construct ( integer $server, string $db, string $table )
$server integer Server id
$db string Database name
$table string Table name
    public function __construct($server, $db, $table)
    {
        $this->_server = $server;
        $this->_db = $db;
        $this->_table = $table;
    }