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