VSortable.php 453 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\UI\Traits;
  3. /**
  4. * VSortable related functions
  5. *
  6. * @autor ThurData <info@thrudata.ch>
  7. */
  8. trait VSortable
  9. {
  10. protected $vSortable = false;
  11. public function isvSortable()
  12. {
  13. return $this->vSortable;
  14. }
  15. public function setvSortable()
  16. {
  17. $this->vSortable = true;
  18. }
  19. public function unsetvSortable()
  20. {
  21. $this->vSortable = false;
  22. }
  23. }