function _varbase_styleguide_fill_row in Varbase Style Guide 9.0.x
Same name and namespace in other branches
- 8.6 varbase_styleguide.module \_varbase_styleguide_fill_row()
- 8.5 varbase_styleguide.module \_varbase_styleguide_fill_row()
Fill Varbase style guide bootstrap row.
1 call to _varbase_styleguide_fill_row()
- varbase_styleguide_styleguide_alter in ./
varbase_styleguide.module - Implements hook_styleguide_alter().
File
- ./
varbase_styleguide.module, line 1585 - Contains varbase_styleguide.module.
Code
function _varbase_styleguide_fill_row($number_of_coloumns, $node_html) {
$row_html_output = '<div class="row">';
for ($col = 1; $col <= $number_of_coloumns; $col++) {
$row_html_output .= $node_html;
}
$row_html_output .= '</div>';
return $row_html_output;
}