modevent.class.php 742 B

1234567891011121314151617181920212223
  1. <?php
  2. /*
  3. * This file is part of MODX Revolution.
  4. *
  5. * Copyright (c) MODX, LLC. All Rights Reserved.
  6. *
  7. * For complete copyright and license information, see the COPYRIGHT and LICENSE
  8. * files found in the top-level directory of this distribution.
  9. */
  10. /**
  11. * Represents a system or user-defined event that can be invoked.
  12. *
  13. * @property string $name The name of the Event
  14. * @property boolean $service Whether or not this is a service event
  15. * @property string $groupname The group of the event
  16. *
  17. * @package modx
  18. * @todo Remove deprecated variables, delegating to the plugins themselves which
  19. * will allow chained and dependent execution of sequenced plugins or even sets
  20. * of nested plugins
  21. */
  22. class modEvent extends xPDOObject {}