/include/inc_ext/php_calendar/php_calendar.php

http://phpwcms.googlecode.com/ · PHP · 150 lines · 111 code · 26 blank · 13 comment · 37 complexity · 53daad57f33140c6902c55b697ecb15f MD5 · raw file

  1. <?php
  2. ////////////////////////////////////////////////////////
  3. // PHP Calendar (version 2.3), written by Keith Devens
  4. // http://keithdevens.com/software/php_calendar
  5. // see example at http://keithdevens.com/weblog
  6. // License: http://keithdevens.com/software/license
  7. // enhanced by Oliver Georgi for phpwcms
  8. function generate_calendar($param=array()){
  9. if(!defined('THIS_YEAR')) define('THIS_YEAR', date('Y') );
  10. if(!defined('THIS_MONTH')) define('THIS_MONTH', date('n') );
  11. if(!defined('THIS_DAY')) define('THIS_DAY', date('j') );
  12. $year = empty($param['year']) ? THIS_YEAR : $param['year'];
  13. $month = empty($param['month']) ? THIS_MONTH : $param['month'];
  14. $day_name_length = empty($param['day_name_length']) ? 3 : $param['day_name_length'];
  15. $month_href = empty($param['month_href']) ? NULL : $param['month_href'];
  16. $first_day = empty($param['first_day']) ? 0 : $param['first_day'];
  17. $weekNr = empty($param['weekNr']) ? true : $param['weekNr'];
  18. $weekNrTitle = empty($param['weekNrTitle']) ? 'Wno' : $param['weekNrTitle'];
  19. $styleAdd = empty($param['styleAdd']) ? '' : $param['styleAdd'];
  20. $pn = isset($param['pn']) && is_array($param['pn']) ? $param['pn'] : array();
  21. $days = isset($param['days']) && is_array($param['days']) ? $param['days'] : array();
  22. $locale = empty($param['locale']) ? false : $param['locale'];
  23. // set correct locale
  24. if($locale) {
  25. $_oldLocale = setlocale(LC_TIME, NULL); //save current locale
  26. setlocale(LC_TIME, $locale);
  27. }
  28. $first_of_month = gmmktime(0,0,0,$month,1,$year);
  29. //remember that mktime will automatically correct if invalid dates are entered
  30. // for instance, mktime(0,0,0,12,32,1997) will be the date for Jan 1, 1998
  31. // this provides a built in "rounding" feature to generate_calendar()
  32. $day_names = array(); //generate all the day names according to the current locale
  33. for($n=0,$t=(3+$first_day)*86400; $n<7; $n++,$t+=86400) {//January 4, 1970 was a Sunday
  34. $day_names[$n] = ucfirst(gmstrftime('%A',$t)); //%A means full textual day name
  35. }
  36. @list($month, $year, $month_name, $weekday) = explode(',',gmstrftime('%m,%Y,%B,%w',$first_of_month));
  37. $weekday = ($weekday + 7 - $first_day) % 7; //adjust for $first_day
  38. $title = htmlentities(ucfirst($month_name)).'&nbsp;'.$year; //note that some locales don't capitalize month and day names
  39. $YYYYmm = $year.$month;
  40. //Begin calendar. Uses a real <caption>. See http://diveintomark.org/archives/2002/07/03
  41. @list($p, $pl) = each($pn);
  42. @list($n, $nl) = each($pn); //previous and next links, if applicable
  43. if($p) $p = '<span class="calendarPrev'.$styleAdd.'">'.($pl ? '<a href="'.htmlspecialchars($pl).'">'.$p.'</a>' : $p).'</span>&nbsp;';
  44. if($n) $n = '&nbsp;<span class="calendarNext'.$styleAdd.'">'.($nl ? '<a href="'.htmlspecialchars($nl).'">'.$n.'</a>' : $n).'</span>';
  45. $calendar = '<table class="calendar'.$styleAdd.'" summary="Calendar">'."\n";
  46. $calendar .= "<tr>\n";
  47. if($weekNr) {
  48. $calendar .= "\t".'<td colspan="8" align="center" class="calendarMonth'.$styleAdd.'"><strong>';
  49. } else {
  50. $calendar .= "\t".'<td colspan="7" align="center" class="calendarMonth'.$styleAdd.'"><strong>';
  51. }
  52. $calendar .= $p;
  53. $calendar .= $month_href ? '<a href="'.htmlspecialchars($month_href).'">'.$title.'</a>' : $title;
  54. $calendar .= $n;
  55. $calendar .= "</strong></td>\n</tr>\n<tr>\n";
  56. if($weekNr) {
  57. $calendar .= "\t".'<td class="calendarWeekNoTitle'.$styleAdd.'">'.$weekNrTitle."</td>\n";
  58. $weekStart = date('W', $first_of_month);
  59. }
  60. if($day_name_length){ //if the day names should be shown ($day_name_length > 0)
  61. //if day_name_length is >3, the full name of the day will be printed
  62. foreach($day_names as $d) {
  63. $calendar .= "\t".'<td class="calendarDayName'.$styleAdd.'">'.htmlentities($day_name_length < 4 ? substr($d,0,$day_name_length) : $d)."</td>\n";
  64. }
  65. $calendar .= "</tr>\n<tr>\n";
  66. }
  67. if($weekday > 0) {
  68. if($weekNr) {
  69. $calendar .= "\t".'<td class="calendarWeek'.$styleAdd.'">'.$weekStart."</td>\n";
  70. $weekStart++;
  71. }
  72. $calendar .= "\t".'<td colspan="'.$weekday.'">&nbsp;</td>'."\n"; //initial 'empty' days
  73. }
  74. for($day=1,$days_in_month=gmdate('t',$first_of_month); $day<=$days_in_month; $day++,$weekday++) {
  75. if($weekday == 7) {
  76. $weekday = 0; //start a new week
  77. $calendar .= "</tr>\n<tr>\n";
  78. }
  79. if($weekNr && $weekday == 0) {
  80. $calendar .= "\t".'<td class="calendarWeek'.$styleAdd.'">'.$weekStart."</td>\n";
  81. $weekStart++;
  82. }
  83. $thisSelected = (intval($year) == THIS_YEAR && intval($month) == THIS_MONTH && $day == THIS_DAY) ? true : false;
  84. $checkDay = $YYYYmm . substr('0'.$day, -2);
  85. if(isset($days[$checkDay]) && is_array($days[$checkDay])){
  86. @list($link, $classes, $content) = $days[$checkDay];
  87. @list($link, $target) = explode(' ', trim($link));
  88. $target = $target ? ' target="'.$target.'"' : '';
  89. if(is_null($content)) {
  90. $content = $day;
  91. }
  92. if($thisSelected) {
  93. $content = '<span class="calendarSelectedDay'.$styleAdd.'">'.$content.'</span>';
  94. }
  95. $calendar .= "\t<td";
  96. if($classes) {
  97. $calendar .= ' class="'.htmlspecialchars($classes).'"';
  98. }
  99. $calendar .= '>';
  100. $calendar .= $link ? '<a href="'.htmlspecialchars($link).'"'.$target.'>'.$content.'</a>' : $content;
  101. $calendar .= "</td>\n";
  102. } else {
  103. $calendar .= "\t";
  104. $calendar .= $thisSelected ? '<td class="calendarSelectedDay'.$styleAdd.'">' : '<td>';
  105. $calendar .= $day."</td>\n";
  106. }
  107. }
  108. if($weekday != 7) {
  109. $calendar .= "\t".'<td colspan="'.(7-$weekday).'">&nbsp;</td>'."\n"; //remaining "empty" days
  110. }
  111. if($locale) {
  112. setlocale(LC_TIME, $_oldLocale); //switch current locale back to old value
  113. }
  114. return $calendar."</tr>\n</table>\n";
  115. }
  116. function tzdelta ( $iTime = 0 ) {
  117. if ( 0 == $iTime ) { $iTime = time(); }
  118. $ar = localtime ( $iTime );
  119. $ar[5] += 1900; $ar[4]++;
  120. $iTztime = gmmktime ( $ar[2], $ar[1], $ar[0], $ar[4], $ar[3], $ar[5], $ar[8] );
  121. return ( $iTztime - $iTime );
  122. }
  123. /////////////////////////////////////////////////////////////////////////////////////
  124. ?>