Last active
October 20, 2022 16:16
-
-
Save estefanionsantos/f3885802cdcdd0aef59129448faa78ff to your computer and use it in GitHub Desktop.
row grid helper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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