ICalendar.php 446 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Calendar interface
  4. *
  5. * Implement this interface to allow a node to be recognized as an calendar.
  6. *
  7. * @package Sabre
  8. * @subpackage CalDAV
  9. * @copyright Copyright (C) 2007-2011 Rooftop Solutions. All rights reserved.
  10. * @author Evert Pot (http://www.rooftopsolutions.nl/)
  11. * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
  12. */
  13. interface Sabre_CalDAV_ICalendar extends Sabre_DAV_ICollection {
  14. }