1: <?php
2: /**
3: * The Kronolith_View_WorkWeek:: class provides a shortcut for a week
4: * view that is only Monday through Friday.
5: *
6: * @author Chuck Hagenbuch <chuck@horde.org>
7: * @package Kronolith
8: */
9: class Kronolith_View_WorkWeek extends Kronolith_View_Week
10: {
11: public $startDay = Horde_Date::DATE_MONDAY;
12: public $endDay = Horde_Date::DATE_FRIDAY;
13: protected $_controller = 'workweek.php';
14:
15: public function getName()
16: {
17: return 'WorkWeek';
18: }
19:
20: }
21: