| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxVps\Core\UI\Traits;
- /**
- * Icons related functions
- *
- * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
- */
- trait HideByDefaultIfNoData
- {
- protected $hideByDefaultIfNoData = false;
- public function setHideByDefaultIfNoData()
- {
- $this->hideByDefaultIfNoData = true;
-
- return $this;
- }
-
- public function unsetHideByDefaultIfNoData()
- {
- $this->hideByDefaultIfNoData = false;
-
- return $this;
- }
-
- public function isHideByDefaultIfNoData()
- {
- return $this->hideByDefaultIfNoData;
- }
- }
|