1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<?php
require_once dirname(__FILE__) . '/week.php';
/**
* This class represent a work week of free busy information sets.
*
* Copyright 2003-2008 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information.
*
* $Horde: kronolith/lib/FBView/workweek.php,v 1.7.10.7 2008/01/02 11:32:18 jan Exp $
*
* @author Mike Cochrane <mike@graftonhall.co.nz>
* @author Jan Schneider <jan@horde.org>
* @package Kronolith
*/
class Kronolith_FreeBusy_View_workweek extends Kronolith_FreeBusy_View_week {
var $view = 'workweek';
var $_days = 5;
}
|