Difference between revisions of "Calendar.php"
From Organic Design wiki
(closure?) |
(Making it so that the current day is displayed for this year only, not for e.g. Calendar 2007) |
||
Line 3: | Line 3: | ||
# Return a calendar table of the passed month and year | # Return a calendar table of the passed month and year | ||
function month( $m, $y, $prefix = '' ) { | function month( $m, $y, $prefix = '' ) { | ||
− | $thisDay = date('d'); | + | $thisDay = date('d'); |
$thisMonth = date('n'); | $thisMonth = date('n'); | ||
+ | $thisYear = date('y'); | ||
if ( !$d = date( 'w', $ts = mktime( 0, 0, 0, $m, 1, $y) ) ) $d = 7; | if ( !$d = date( 'w', $ts = mktime( 0, 0, 0, $m, 1, $y) ) ) $d = 7; | ||
$month = date( 'F', $ts ); | $month = date( 'F', $ts ); | ||
Line 15: | Line 16: | ||
if ( $day < 29 or checkdate( $m, $day, $y ) ) { | if ( $day < 29 or checkdate( $m, $day, $y ) ) { | ||
if ( $i%7 == 1 ) $article .= "\n<tr>"; | if ( $i%7 == 1 ) $article .= "\n<tr>"; | ||
− | $t = ( $day == $thisDay and $m == $thisMonth ) ? ' class=xwToday' : ''; | + | $t = ( $day == $thisDay and $m == $thisMonth and $y == $thisYear ) ? ' class=xwToday' : ''; |
$article .= "<td$t>[[$prefix$dd $month $y|$day]]"; | $article .= "<td$t>[[$prefix$dd $month $y|$day]]"; | ||
} | } |
Revision as of 07:49, 26 May 2006
<?
- Return a calendar table of the passed month and year
function month( $m, $y, $prefix = ) { $thisDay = date('d'); $thisMonth = date('n');
$thisYear = date('y');
if ( !$d = date( 'w', $ts = mktime( 0, 0, 0, $m, 1, $y) ) ) $d = 7; $month = date( 'F', $ts );
$article = "
"; $article .= "\n"; if ( $d > 1 ) $article .= ''.str_repeat( '', $d-1 );for ( $i = $day = $d; $day < 32; $i++ ) { $day = $i - $d + 1; $dd = $day < 10 ? "0$day" : $day; if ( $day < 29 or checkdate( $m, $day, $y ) ) {
if ( $i%7 == 1 ) $article .= "\n"; $t = ( $day == $thisDay and $m == $thisMonth and $y == $thisYear ) ? ' class=xwToday' : ; $article .= "<td$t>$day"; } } $article .= "\n$month\n | ||||||
---|---|---|---|---|---|---|
M | T | W | T | F | S | S |
";
return $article; }
- Use everything before "Calendar" in name as prefix
$p = preg_replace( '/calendar.*$/i', , $title );
- If cal name ends with a year, use that instead of current
$y = ereg( '([0-9]{4})$', $title, $m ) ? $m[1] : date( 'Y' );
- Append the article content with a table of all the month-tables
$article .= "
\n"; $m = 1; for ( $rows = 3; $rows--; $article .= "\n" ) for ( $cols = 0; $cols < 4; $cols++ ) $article .= "\n".month( $m++, $y, $p ); $article .= ' |
';
?>