PMA\libraries\DisplayResults::_buildValueDisplay PHP Method

_buildValueDisplay() private method

Prepares the display for a value
private _buildValueDisplay ( string $class, boolean $condition_field, string $value ) : string
$class string class of table cell
$condition_field boolean whether to add CSS class condition
$value string value to display
return string the td
    private function _buildValueDisplay($class, $condition_field, $value)
    {
        return '<td class="left ' . $class . ($condition_field ? ' condition' : '') . '">' . $value . '</td>';
    }
DisplayResults