1 eblog Jul 14, 2004 19:01
3 eblog Jul 16, 2004 18:35
Glad to hear that.
Now about haderdisplay :
in, _calendar.php
there's a line with
$Calendar->set( 'headerdisplay', 1 ); // set this to 0 if you don't want to display "Mon Tue Wed..."
Regarding to what says the comment, only two values are possible : 0 or 1
So I looked at _class_calendar.php to change the day length from 3 to 1 letter
(Fri > F).
Thus I replaced 'D' by 'e'
$this->headerdisplay = 'e'; // D => 'Fri'; e => 'F', l (lowercase l) => 'Friday'
But that sets the default and doesn't change the final appearance.
conclusion, to change the week days length we must edit
$Calendar->set( 'headerdisplay', 1 ); // set this to 0 if you don't want to display "Mon Tue Wed..."
and replaced the 1 by 'D', 'l' or 'e'.
4 eblog Aug 08, 2004 03:28
Hey I just discovered that the week/days calendar can turn into year/months.
I love it !
interesting suggestions. We'll try to implement these someday.