ICalendarObject.php 480 B

123456789101112131415161718192021
  1. <?php
  2. namespace Sabre\CalDAV;
  3. use Sabre\DAV;
  4. /**
  5. * CalendarObject interface
  6. *
  7. * Extend the ICalendarObject interface to allow your custom nodes to be picked up as
  8. * CalendarObjects.
  9. *
  10. * Calendar objects are resources such as Events, Todo's or Journals.
  11. *
  12. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  13. * @author Evert Pot (http://evertpot.com/)
  14. * @license http://sabre.io/license/ Modified BSD License
  15. */
  16. interface ICalendarObject extends DAV\IFile {
  17. }