AjaxComponent.php 357 B

12345678910111213141516
  1. <?php
  2. namespace ModulesGarden\Servers\ProxmoxVps\Core\UI\Traits;
  3. /**
  4. * Ajax Components related functions
  5. *
  6. * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
  7. */
  8. trait AjaxComponent
  9. {
  10. public function isAjaxComponent()
  11. {
  12. return $this instanceof \ModulesGarden\Servers\ProxmoxVps\Core\UI\Interfaces\AjaxElementInterface;
  13. }
  14. }