1: <?php
2: /**
3: * This basic interface for a freebusy owner.
4: *
5: * PHP version 5
6: *
7: * @category Kolab
8: * @package Kolab_FreeBusy
9: * @author Gunnar Wrobel <wrobel@pardus.de>
10: * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
11: * @link http://pear.horde.org/index.php?package=Kolab_FreeBusy
12: */
13:
14: /**
15: * This basic interface for a freebusy owner.
16: *
17: * Copyright 2010-2012 Horde LLC (http://www.horde.org/)
18: *
19: * See the enclosed file COPYING for license information (LGPL). If you did not
20: * receive this file, see
21: * http://www.horde.org/licenses/lgpl21.
22: *
23: * @category Kolab
24: * @package Kolab_FreeBusy
25: * @author Gunnar Wrobel <wrobel@pardus.de>
26: * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
27: * @link http://pear.horde.org/index.php?package=Kolab_FreeBusy
28: */
29: interface Horde_Kolab_FreeBusy_Freebusy_Owner
30: extends Horde_Kolab_FreeBusy_Owner
31: {
32: /**
33: * Return how many days into the past the free/busy data should be
34: * calculated for this owner.
35: *
36: * @return int The number of days.
37: */
38: public function getFreeBusyPast();
39:
40: /**
41: * Return how many days into the future the free/busy data should be
42: * calculated for this owner.
43: *
44: * @return int The number of days.
45: */
46: public function getFreeBusyFuture();
47: }