PMA\libraries\controllers\server\ServerDatabasesController::_getHtmlForTableBody PHP Метод

_getHtmlForTableBody() приватный Метод

Returns the html for Database List
private _getHtmlForTableBody ( array $column_order, array $replication_types ) : string
$column_order array column order
$replication_types array replication types
Результат string
    private function _getHtmlForTableBody($column_order, $replication_types)
    {
        $html = '<tbody>' . "\n";
        foreach ($this->_databases as $current) {
            $tr_class = ' db-row';
            if ($this->dbi->isSystemSchema($current['SCHEMA_NAME'], true)) {
                $tr_class .= ' noclick';
            }
            $generated_html = $this->_buildHtmlForDb($current, $GLOBALS['url_query'], $column_order, $replication_types, $GLOBALS['replication_info'], $tr_class);
            $html .= $generated_html;
        }
        // end foreach ($this->_databases as $key => $current)
        $html .= '</tbody>';
        return $html;
    }