1: <?php
2: /**
3: * This class represent a work week of free busy information sets.
4: *
5: * Copyright 2003-2012 Horde LLC (http://www.horde.org/)
6: *
7: * See the enclosed file COPYING for license information.
8: *
9: * @author Mike Cochrane <mike@graftonhall.co.nz>
10: * @author Jan Schneider <jan@horde.org>
11: * @package Kronolith
12: */
13: class Kronolith_FreeBusy_View_Workweek extends Kronolith_FreeBusy_View_Week
14: {
15: /**
16: * This view type
17: *
18: * @var string
19: */
20: var $view = 'workweek';
21:
22: /**
23: * Number of days
24: *
25: * @var integer
26: */
27: var $_days = 5;
28:
29: }
30: