ISharedCalendar.php 644 B

123456789101112131415161718192021222324252627
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\CalDAV;
  4. use Sabre\DAV\Sharing\ISharedNode;
  5. /**
  6. * This interface represents a Calendar that is shared by a different user.
  7. *
  8. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  9. * @author Evert Pot (http://evertpot.com/)
  10. * @license http://sabre.io/license/ Modified BSD License
  11. */
  12. interface ISharedCalendar extends ISharedNode
  13. {
  14. /**
  15. * Marks this calendar as published.
  16. *
  17. * Publishing a calendar should automatically create a read-only, public,
  18. * subscribable calendar.
  19. *
  20. * @param bool $value
  21. */
  22. public function setPublishStatus($value);
  23. }