PMA\libraries\DatabaseInterface::getSystemSchemas PHP Method

getSystemSchemas() public method

Get the list of system schemas
public getSystemSchemas ( ) : array
return array list of system schemas
    public function getSystemSchemas()
    {
        $schemas = array('information_schema', 'performance_schema', 'mysql', 'sys');
        $systemSchemas = array();
        foreach ($schemas as $schema) {
            if ($this->isSystemSchema($schema, true)) {
                $systemSchemas[] = $schema;
            }
        }
        return $systemSchemas;
    }