function _varbase_styleguide_col in Varbase Style Guide 8.5
Same name and namespace in other branches
- 8.6 varbase_styleguide.module \_varbase_styleguide_col()
- 9.0.x varbase_styleguide.module \_varbase_styleguide_col()
Get Varbase style guide bootstrap coloumn.
1 call to _varbase_styleguide_col()
- varbase_styleguide_styleguide_alter in ./
varbase_styleguide.module - Implements hook_styleguide_alter().
File
- ./
varbase_styleguide.module, line 916 - Contains varbase_styleguide.module.
Code
function _varbase_styleguide_col($col_class, $node_output_with_a_view_mode) {
$col_html_output = '<div class="' . $col_class . '">';
$col_html_output .= $node_output_with_a_view_mode;
$col_html_output .= '</div>';
return $col_html_output;
}