PMA\libraries\DisplayResults::_getClassesForColumn PHP Method

_getClassesForColumn() private method

Get the combined classes for a column
See also: _getTableBody()
private _getClassesForColumn ( string $grid_edit_class, string $not_null_class, string $relation_class, string $hide_class, string $field_type_class ) : string
$grid_edit_class string the class for all editable columns
$not_null_class string the class for not null columns
$relation_class string the class for relations in a column
$hide_class string the class for visibility of a column
$field_type_class string the class related to type of the field
return string $class the combined classes
    private function _getClassesForColumn($grid_edit_class, $not_null_class, $relation_class, $hide_class, $field_type_class)
    {
        $class = 'data ' . $grid_edit_class . ' ' . $not_null_class . ' ' . $relation_class . ' ' . $hide_class . ' ' . $field_type_class;
        return $class;
    }
DisplayResults