| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace ModulesGarden\ProxmoxAddon\Core\UI\Traits;
- /**
- * Icons related functions
- *
- * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
- */
- trait TableRowCol
- {
- protected $tableRowCol = '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;
- }
- }
|