You are here

function _varbase_styleguide_fill_row in Varbase Style Guide 8.5

Same name and namespace in other branches
  1. 8.6 varbase_styleguide.module \_varbase_styleguide_fill_row()
  2. 9.0.x 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 903
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;
}