| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace ThurData\Servers\KerioEmail\Core\UI\Traits;
- /**
- * Icons related functions
- *
- * @autor ThurData <info@thrudata.ch>
- */
- trait TableRowCol
- {
- protected $tableRowCol = 'lu-col-md-12';
- public function setTableRowCol($tableRowCol = null)
- {
- if ($tableRowCol)
- {
- $this->tableRowCol = $tableRowCol;
- }
-
- return $this;
- }
- public function disableTableRowCol()
- {
- $this->tableRowCol = null;
-
- return $this;
- }
-
- public function getTableRowCol()
- {
- return $this->tableRowCol;
- }
- }
|