| 123456789101112131415161718192021222324252627 |
- <?php
- namespace ModulesGarden\ProxmoxAddon\Core\UI\Traits;
- /**
- * Forms Section Elements related functions
- *
- * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
- */
- trait Section
- {
- protected $groupFieldsBySectionName = false;
- public function enableGroupBySectionName()
- {
- $this->groupFieldsBySectionName = true;
- return $this;
- }
- public function disableGroupBySectionName()
- {
- $this->groupFieldsBySectionName = false;
- return $this;
- }
- }
|