| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace ModulesGarden\ProxmoxAddon\Core\UI\Traits;
- /**
- * VSortable related functions
- *
- * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
- */
- trait VSortable
- {
- protected $vSortable = false;
- public function isvSortable()
- {
- return $this->vSortable;
- }
- public function setvSortable()
- {
- $this->vSortable = true;
- }
- public function unsetvSortable()
- {
- $this->vSortable = false;
- }
- }
|