($CalStartMonday): new option, if set to 1 week starts with Mo instead of Su

This commit is contained in:
Ingo Belka
2006-03-27 04:56:11 +00:00
parent 0eefc2b547
commit f4dadfc2ef

View File

@@ -17,13 +17,13 @@
# 59 Temple Place, Suite 330
# Boston, MA 02111-1307 USA
$ModulesDescription .= '<p>$Id: calendar.pl,v 1.48 2006/03/27 04:54:18 ingob Exp $</p>';
$ModulesDescription .= '<p>$Id: calendar.pl,v 1.49 2006/03/27 04:56:11 ingob Exp $</p>';
use vars qw($CalendarOnEveryPage $CalAsTable $CalStartMonday);
$CalendarOnEveryPage = 0; # 1=on every page is a month-div situated in the header, use css to control
$CalAsTable = 1; # 0=every month-div is "free", 1=every month-div is caught in a table, use css to control
$CalStartMonday = 1; # 0=week starts with Su, 1=week starts with Mo
$CalAsTable = 0; # 0=every month-div is "free", 1=every month-div is caught in a table, use css to control
$CalStartMonday = 0; # 0=week starts with Su, 1=week starts with Mo
*OldCalendarGetHeader = *GetHeader;
*GetHeader = *NewCalendarGetHeader;