PMA\libraries\plugins\schema\ExportRelationSchema::getTablesFromRequest PHP Method

getTablesFromRequest() protected method

Get the table names from the request
protected getTablesFromRequest ( ) : array
return array an array of table names
    protected function getTablesFromRequest()
    {
        $tables = array();
        $dbLength = mb_strlen($this->db);
        foreach ($_REQUEST['t_h'] as $key => $value) {
            if ($value) {
                $tables[] = mb_substr($key, $dbLength + 1);
            }
        }
        return $tables;
    }