Skip to content

Instantly share code, notes, and snippets.

@estefanionsantos
Last active October 20, 2022 16:16
Show Gist options
  • Save estefanionsantos/f3885802cdcdd0aef59129448faa78ff to your computer and use it in GitHub Desktop.
Save estefanionsantos/f3885802cdcdd0aef59129448faa78ff to your computer and use it in GitHub Desktop.
row grid helper
<?php
# file: RowGridHelper.php
class RowGridHelper extends Rubricate\Grid\AbstractRowGrid
{
private $row = 'row';
private $col = 'col-%s';
protected function getRow()
{
return $this->row;
}
protected function getColFormat()
{
return $this->col;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment