File: WorkWeek.php

package info (click to toggle)
kronolith2 2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 7,936 kB
  • ctags: 3,577
  • sloc: php: 14,001; xml: 1,494; sql: 489; makefile: 68
file content (26 lines) | stat: -rw-r--r-- 602 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

require_once dirname(__FILE__) . '/Week.php';

/**
 * The Kronolith_View_WorkWeek:: class provides a shortcut for a week
 * view that is only Monday through Friday.
 *
 * $Horde: kronolith/lib/Views/WorkWeek.php,v 1.3.2.1 2007/12/20 14:12:38 jan Exp $
 *
 * @author  Chuck Hagenbuch <chuck@horde.org>
 * @since   Kronolith 2.2
 * @package Kronolith
 */
class Kronolith_View_WorkWeek extends Kronolith_View_Week {

    var $startDay = HORDE_DATE_MONDAY;
    var $endDay = HORDE_DATE_FRIDAY;
    var $_controller = 'workweek.php';

    function getName()
    {
        return 'WorkWeek';
    }

}