PMA\libraries\controllers\server\ServerBinlogController::_getAllLogItemInfo PHP Method

_getAllLogItemInfo() private method

Returns the html for all binary log items.
private _getAllLogItemInfo ( resource $result, boolean $dontlimitchars ) : string
$result resource MySQL Query result
$dontlimitchars boolean Whether limit chars
return string
    private function _getAllLogItemInfo($result, $dontlimitchars)
    {
        $html = "";
        while ($value = $this->dbi->fetchAssoc($result)) {
            $html .= Template::get('server/binlog/log_row')->render(array('value' => $value, 'dontlimitchars' => $dontlimitchars));
        }
        return $html;
    }