@@ -5,8 +5,8 @@ discard block |
||
| 5 | 5 | if (!@include 'Calendar/Calendar.php') { |
| 6 | 6 | define('CALENDAR_ROOT', '../../'); |
| 7 | 7 | } |
| 8 | -require_once CALENDAR_ROOT . 'Month/Weekdays.php'; |
|
| 9 | -require_once CALENDAR_ROOT . 'Decorator/Uri.php'; |
|
| 8 | +require_once CALENDAR_ROOT.'Month/Weekdays.php'; |
|
| 9 | +require_once CALENDAR_ROOT.'Decorator/Uri.php'; |
|
| 10 | 10 | |
| 11 | 11 | if (!isset($_GET['jahr'])) { |
| 12 | 12 | $_GET['jahr'] = date('Y'); |
@@ -18,17 +18,17 @@ discard block |
||
| 18 | 18 | // Build the month |
| 19 | 19 | $Calendar = new Calendar_Month_Weekdays($_GET['jahr'], $_GET['monat']); |
| 20 | 20 | |
| 21 | -echo '<p>The current month is ' . $Calendar->thisMonth() . ' of year ' . $Calendar->thisYear() . '</p>'; |
|
| 21 | +echo '<p>The current month is '.$Calendar->thisMonth().' of year '.$Calendar->thisYear().'</p>'; |
|
| 22 | 22 | |
| 23 | 23 | $Uri = new Calendar_Decorator_Uri($Calendar); |
| 24 | 24 | $Uri->setFragments('jahr', 'monat'); |
| 25 | 25 | // $Uri->setSeperator('/'); // Default is & |
| 26 | 26 | // $Uri->setScalar(); // Omit variable names |
| 27 | -echo "<pre>Previous Uri:\t" . $Uri->prev('month') . "\n"; |
|
| 28 | -echo "This Uri:\t" . $Uri->this('month') . "\n"; |
|
| 29 | -echo "Next Uri:\t" . $Uri->next('month') . "\n</pre>"; |
|
| 27 | +echo "<pre>Previous Uri:\t".$Uri->prev('month')."\n"; |
|
| 28 | +echo "This Uri:\t".$Uri->this('month')."\n"; |
|
| 29 | +echo "Next Uri:\t".$Uri->next('month')."\n</pre>"; |
|
| 30 | 30 | ?> |
| 31 | 31 | <p> |
| 32 | - <a href="<?php echo $_SERVER['PHP_SELF'] . '?' . $Uri->prev('month'); ?>">Prev</a> : |
|
| 33 | - <a href="<?php echo $_SERVER['PHP_SELF'] . '?' . $Uri->next('month'); ?>">Next</a> |
|
| 32 | + <a href="<?php echo $_SERVER['PHP_SELF'].'?'.$Uri->prev('month'); ?>">Prev</a> : |
|
| 33 | + <a href="<?php echo $_SERVER['PHP_SELF'].'?'.$Uri->next('month'); ?>">Next</a> |
|
| 34 | 34 | </p> |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | { |
| 8 | 8 | list($usec, $sec) = explode(' ', microtime()); |
| 9 | 9 | |
| 10 | - return (float)$usec + (float)$sec; |
|
| 10 | + return (float) $usec + (float) $sec; |
|
| 11 | 11 | } |
| 12 | 12 | |
| 13 | 13 | $start = getmicrotime(); |
@@ -15,8 +15,8 @@ discard block |
||
| 15 | 15 | if (!@include 'Calendar/Calendar.php') { |
| 16 | 16 | define('CALENDAR_ROOT', '../../'); |
| 17 | 17 | } |
| 18 | -require_once CALENDAR_ROOT . 'Month/Weekdays.php'; |
|
| 19 | -require_once CALENDAR_ROOT . 'Day.php'; |
|
| 18 | +require_once CALENDAR_ROOT.'Month/Weekdays.php'; |
|
| 19 | +require_once CALENDAR_ROOT.'Day.php'; |
|
| 20 | 20 | |
| 21 | 21 | if (!isset($_GET['y'])) { |
| 22 | 22 | $_GET['y'] = date('Y'); |
@@ -33,9 +33,9 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | // Construct strings for next/previous links |
| 35 | 35 | $PMonth = $Month->prevMonth('object'); // Get previous month as object |
| 36 | -$prev = $_SERVER['PHP_SELF'] . '?y=' . $PMonth->thisYear() . '&m=' . $PMonth->thisMonth() . '&d=' . $PMonth->thisDay(); |
|
| 36 | +$prev = $_SERVER['PHP_SELF'].'?y='.$PMonth->thisYear().'&m='.$PMonth->thisMonth().'&d='.$PMonth->thisDay(); |
|
| 37 | 37 | $NMonth = $Month->nextMonth('object'); |
| 38 | -$next = $_SERVER['PHP_SELF'] . '?y=' . $NMonth->thisYear() . '&m=' . $NMonth->thisMonth() . '&d=' . $NMonth->thisDay(); |
|
| 38 | +$next = $_SERVER['PHP_SELF'].'?y='.$NMonth->thisYear().'&m='.$NMonth->thisMonth().'&d='.$NMonth->thisDay(); |
|
| 39 | 39 | ?> |
| 40 | 40 | <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"> |
| 41 | 41 | <html> |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | while ($Day = $Month->fetch()) { |
| 111 | 111 | |
| 112 | 112 | // Build a link string for each day |
| 113 | - $link = $_SERVER['PHP_SELF'] . '?y=' . $Day->thisYear() . '&m=' . $Day->thisMonth() . '&d=' . $Day->thisDay(); |
|
| 113 | + $link = $_SERVER['PHP_SELF'].'?y='.$Day->thisYear().'&m='.$Day->thisMonth().'&d='.$Day->thisDay(); |
|
| 114 | 114 | |
| 115 | 115 | // isFirst() to find start of week |
| 116 | 116 | if ($Day->isFirst()) { |
@@ -118,11 +118,11 @@ discard block |
||
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | if ($Day->isSelected()) { |
| 121 | - echo '<td class="selected">' . $Day->thisDay() . "</td>\n"; |
|
| 121 | + echo '<td class="selected">'.$Day->thisDay()."</td>\n"; |
|
| 122 | 122 | } elseif ($Day->isEmpty()) { |
| 123 | 123 | echo "<td> </td>\n"; |
| 124 | 124 | } else { |
| 125 | - echo '<td><a href="' . $link . '">' . $Day->thisDay() . "</a></td>\n"; |
|
| 125 | + echo '<td><a href="'.$link.'">'.$Day->thisDay()."</a></td>\n"; |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | // isLast() to find end of week |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | </tr> |
| 143 | 143 | </table> |
| 144 | 144 | <?php |
| 145 | -echo '<p><b>Took: ' . (getmicrotime() - $start) . ' seconds</b></p>'; |
|
| 145 | +echo '<p><b>Took: '.(getmicrotime() - $start).' seconds</b></p>'; |
|
| 146 | 146 | ?> |
| 147 | 147 | </body> |
| 148 | 148 | </html> |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | { |
| 7 | 7 | list($usec, $sec) = explode(' ', microtime()); |
| 8 | 8 | |
| 9 | - return (float)$usec + (float)$sec; |
|
| 9 | + return (float) $usec + (float) $sec; |
|
| 10 | 10 | } |
| 11 | 11 | |
| 12 | 12 | $start = getmicrotime(); |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | define('CALENDAR_ROOT', '../../'); |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | -require_once CALENDAR_ROOT . 'Year.php'; |
|
| 18 | +require_once CALENDAR_ROOT.'Year.php'; |
|
| 19 | 19 | |
| 20 | 20 | define('CALENDAR_MONTH_STATE', CALENDAR_USE_MONTH_WEEKDAYS); |
| 21 | 21 | |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | echo "<td>\n<table class=\"month\">\n"; |
| 103 | - echo '<caption class="month">' . date('F', $Month->thisMonth(true)) . '</caption>'; |
|
| 103 | + echo '<caption class="month">'.date('F', $Month->thisMonth(true)).'</caption>'; |
|
| 104 | 104 | echo "<tr>\n<th>M</th><th>T</th><th>W</th><th>T</th><th>F</th><th>S</th><th>S</th>\n</tr>"; |
| 105 | 105 | $Month->build(); |
| 106 | 106 | while ($Day = $Month->fetch()) { |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | if ($Day->isEmpty()) { |
| 111 | 111 | echo "<td> </td>\n"; |
| 112 | 112 | } else { |
| 113 | - echo '<td>' . $Day->thisDay() . "</td>\n"; |
|
| 113 | + echo '<td>'.$Day->thisDay()."</td>\n"; |
|
| 114 | 114 | } |
| 115 | 115 | if ($Day->isLast()) { |
| 116 | 116 | echo "</tr>\n"; |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | { |
| 7 | 7 | list($usec, $sec) = explode(' ', microtime()); |
| 8 | 8 | |
| 9 | - return (float)$usec + (float)$sec; |
|
| 9 | + return (float) $usec + (float) $sec; |
|
| 10 | 10 | } |
| 11 | 11 | |
| 12 | 12 | $start = getmicrotime(); |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | if (!@include 'Calendar/Calendar.php') { |
| 15 | 15 | define('CALENDAR_ROOT', '../../'); |
| 16 | 16 | } |
| 17 | -require_once CALENDAR_ROOT . 'Second.php'; |
|
| 17 | +require_once CALENDAR_ROOT.'Second.php'; |
|
| 18 | 18 | |
| 19 | 19 | if (!isset($_GET['y'])) { |
| 20 | 20 | $_GET['y'] = date('Y'); |
@@ -37,14 +37,14 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | $Unit = new Calendar_Second($_GET['y'], $_GET['m'], $_GET['d'], $_GET['h'], $_GET['i'], $_GET['s']); |
| 39 | 39 | |
| 40 | -echo '<p><b>Result:</b> ' . $Unit->thisYear() . '-' . $Unit->thisMonth() . '-' . $Unit->thisDay() . ' ' . $Unit->thisHour() . ':' . $Unit->thisMinute() . ':' . $Unit->thisSecond(); |
|
| 40 | +echo '<p><b>Result:</b> '.$Unit->thisYear().'-'.$Unit->thisMonth().'-'.$Unit->thisDay().' '.$Unit->thisHour().':'.$Unit->thisMinute().':'.$Unit->thisSecond(); |
|
| 41 | 41 | if ($Unit->isValid()) { |
| 42 | 42 | echo ' is valid!</p>'; |
| 43 | 43 | } else { |
| 44 | - $V =& $Unit->getValidator(); |
|
| 44 | + $V = & $Unit->getValidator(); |
|
| 45 | 45 | echo ' is invalid:</p>'; |
| 46 | 46 | while ($error = $V->fetch()) { |
| 47 | - echo $error->toString() . '<br>'; |
|
| 47 | + echo $error->toString().'<br>'; |
|
| 48 | 48 | } |
| 49 | 49 | } |
| 50 | 50 | ?> |
@@ -61,4 +61,4 @@ discard block |
||
| 61 | 61 | <p><b>Note:</b> Error messages can be controlled with the constants <code>CALENDAR_VALUE_TOOSMALL</code> and <code>CALENDAR_VALUE_TOOLARGE</code> |
| 62 | 62 | - see <code>Calendar_Validator.php</code></p> |
| 63 | 63 | |
| 64 | -<?php echo '<p><b>Took: ' . (getmicrotime() - $start) . ' seconds</b></p>'; |
|
| 64 | +<?php echo '<p><b>Took: '.(getmicrotime() - $start).' seconds</b></p>'; |
|
@@ -9,8 +9,8 @@ discard block |
||
| 9 | 9 | if (!@include 'Calendar/Calendar.php') { |
| 10 | 10 | define('CALENDAR_ROOT', '../../'); |
| 11 | 11 | } |
| 12 | -require_once CALENDAR_ROOT . 'Month/Weekdays.php'; |
|
| 13 | -require_once CALENDAR_ROOT . 'Decorator.php'; |
|
| 12 | +require_once CALENDAR_ROOT.'Month/Weekdays.php'; |
|
| 13 | +require_once CALENDAR_ROOT.'Decorator.php'; |
|
| 14 | 14 | |
| 15 | 15 | // Decorate a Month with methods to improve formatting |
| 16 | 16 | |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | $prevStamp = parent::prevMonth(true); |
| 38 | 38 | |
| 39 | 39 | // Build the URL for the previous month |
| 40 | - return $_SERVER['PHP_SELF'] . '?y=' . date('Y', $prevStamp) . '&m=' . date('n', $prevStamp) . '&d=' . date('j', $prevStamp); |
|
| 40 | + return $_SERVER['PHP_SELF'].'?y='.date('Y', $prevStamp).'&m='.date('n', $prevStamp).'&d='.date('j', $prevStamp); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | /** |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | $nextStamp = parent::nextMonth(true); |
| 60 | 60 | |
| 61 | 61 | // Build the URL for next month |
| 62 | - return $_SERVER['PHP_SELF'] . '?y=' . date('Y', $nextStamp) . '&m=' . date('n', $nextStamp) . '&d=' . date('j', $nextStamp); |
|
| 62 | + return $_SERVER['PHP_SELF'].'?y='.date('Y', $nextStamp).'&m='.date('n', $nextStamp).'&d='.date('j', $nextStamp); |
|
| 63 | 63 | } |
| 64 | 64 | } |
| 65 | 65 | |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | if ($Day->isEmpty()) { |
| 96 | 96 | echo '<td> </td>'; |
| 97 | 97 | } else { |
| 98 | - echo '<td>' . $Day->thisDay() . '</td>'; |
|
| 98 | + echo '<td>'.$Day->thisDay().'</td>'; |
|
| 99 | 99 | } |
| 100 | 100 | if ($Day->isLast()) { |
| 101 | 101 | echo "\n</tr>\n"; |
@@ -5,9 +5,9 @@ discard block |
||
| 5 | 5 | if (!@include 'Calendar/Calendar.php') { |
| 6 | 6 | define('CALENDAR_ROOT', '../../'); |
| 7 | 7 | } |
| 8 | -require_once CALENDAR_ROOT . 'Month.php'; |
|
| 9 | -require_once CALENDAR_ROOT . 'Decorator.php'; // Not really needed but added to help this make sense |
|
| 10 | -require_once CALENDAR_ROOT . 'Decorator/Wrapper.php'; |
|
| 8 | +require_once CALENDAR_ROOT.'Month.php'; |
|
| 9 | +require_once CALENDAR_ROOT.'Decorator.php'; // Not really needed but added to help this make sense |
|
| 10 | +require_once CALENDAR_ROOT.'Decorator/Wrapper.php'; |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * Class MyBoldDecorator. |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | */ |
| 28 | 28 | public function thisDay() |
| 29 | 29 | { |
| 30 | - return '<b>' . parent::thisDay() . '</b>'; |
|
| 30 | + return '<b>'.parent::thisDay().'</b>'; |
|
| 31 | 31 | } |
| 32 | 32 | } |
| 33 | 33 | |
@@ -39,5 +39,5 @@ discard block |
||
| 39 | 39 | echo '<h2>The Wrapper decorator</h2>'; |
| 40 | 40 | echo '<i>Day numbers are rendered in bold</i><br> <br>'; |
| 41 | 41 | while ($DecoratedDay = $Wrapper->fetch('MyBoldDecorator')) { |
| 42 | - echo $DecoratedDay->thisDay() . '<br>'; |
|
| 42 | + echo $DecoratedDay->thisDay().'<br>'; |
|
| 43 | 43 | } |
@@ -5,8 +5,8 @@ discard block |
||
| 5 | 5 | if (!@include 'Calendar/Calendar.php') { |
| 6 | 6 | define('CALENDAR_ROOT', '../../'); |
| 7 | 7 | } |
| 8 | -require_once CALENDAR_ROOT . 'Month/Weekdays.php'; |
|
| 9 | -require_once CALENDAR_ROOT . 'Util/Uri.php'; |
|
| 8 | +require_once CALENDAR_ROOT.'Month/Weekdays.php'; |
|
| 9 | +require_once CALENDAR_ROOT.'Util/Uri.php'; |
|
| 10 | 10 | |
| 11 | 11 | if (!isset($_GET['jahr'])) { |
| 12 | 12 | $_GET['jahr'] = date('Y'); |
@@ -18,15 +18,15 @@ discard block |
||
| 18 | 18 | // Build the month |
| 19 | 19 | $Calendar = new Calendar_Month_Weekdays($_GET['jahr'], $_GET['monat']); |
| 20 | 20 | |
| 21 | -echo '<p>The current month is ' . $Calendar->thisMonth() . ' of year ' . $Calendar->thisYear() . '</p>'; |
|
| 21 | +echo '<p>The current month is '.$Calendar->thisMonth().' of year '.$Calendar->thisYear().'</p>'; |
|
| 22 | 22 | |
| 23 | 23 | $Uri = new Calendar_Util_Uri('jahr', 'monat'); |
| 24 | 24 | $Uri->setFragments('jahr', 'monat'); |
| 25 | 25 | |
| 26 | 26 | echo '"Vector" URIs<pre>'; |
| 27 | -echo "Previous Uri:\t" . htmlentities($Uri->prev($Calendar, 'month')) . "\n"; |
|
| 28 | -echo "This Uri:\t" . htmlentities($Uri->this($Calendar, 'month')) . "\n"; |
|
| 29 | -echo "Next Uri:\t" . htmlentities($Uri->next($Calendar, 'month')) . "\n"; |
|
| 27 | +echo "Previous Uri:\t".htmlentities($Uri->prev($Calendar, 'month'))."\n"; |
|
| 28 | +echo "This Uri:\t".htmlentities($Uri->this($Calendar, 'month'))."\n"; |
|
| 29 | +echo "Next Uri:\t".htmlentities($Uri->next($Calendar, 'month'))."\n"; |
|
| 30 | 30 | echo '</pre>'; |
| 31 | 31 | |
| 32 | 32 | // Switch to scalar URIs |
@@ -34,9 +34,9 @@ discard block |
||
| 34 | 34 | $Uri->scalar = true; // Omit variable names |
| 35 | 35 | |
| 36 | 36 | echo '"Scalar" URIs<pre>'; |
| 37 | -echo "Previous Uri:\t" . $Uri->prev($Calendar, 'month') . "\n"; |
|
| 38 | -echo "This Uri:\t" . $Uri->this($Calendar, 'month') . "\n"; |
|
| 39 | -echo "Next Uri:\t" . $Uri->next($Calendar, 'month') . "\n"; |
|
| 37 | +echo "Previous Uri:\t".$Uri->prev($Calendar, 'month')."\n"; |
|
| 38 | +echo "This Uri:\t".$Uri->this($Calendar, 'month')."\n"; |
|
| 39 | +echo "Next Uri:\t".$Uri->next($Calendar, 'month')."\n"; |
|
| 40 | 40 | echo '</pre>'; |
| 41 | 41 | |
| 42 | 42 | // Restore the vector URIs |
@@ -44,6 +44,6 @@ discard block |
||
| 44 | 44 | $Uri->scalar = false; |
| 45 | 45 | ?> |
| 46 | 46 | <p> |
| 47 | - <a href="<?php echo $_SERVER['PHP_SELF'] . '?' . $Uri->prev($Calendar, 'month'); ?>">Prev</a> : |
|
| 48 | - <a href="<?php echo $_SERVER['PHP_SELF'] . '?' . $Uri->next($Calendar, 'month'); ?>">Next</a> |
|
| 47 | + <a href="<?php echo $_SERVER['PHP_SELF'].'?'.$Uri->prev($Calendar, 'month'); ?>">Prev</a> : |
|
| 48 | + <a href="<?php echo $_SERVER['PHP_SELF'].'?'.$Uri->next($Calendar, 'month'); ?>">Next</a> |
|
| 49 | 49 | </p> |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | /** |
| 50 | 50 | * Load Calendar base class. |
| 51 | 51 | */ |
| 52 | -require_once CALENDAR_ROOT . 'Calendar.php'; |
|
| 52 | +require_once CALENDAR_ROOT.'Calendar.php'; |
|
| 53 | 53 | |
| 54 | 54 | /** |
| 55 | 55 | * Represents a Second<br> |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | */ |
| 81 | 81 | public function __construct(&$calendar) |
| 82 | 82 | { |
| 83 | - $this->calendar =& $calendar; |
|
| 83 | + $this->calendar = & $calendar; |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | /** |
@@ -403,8 +403,8 @@ discard block |
||
| 403 | 403 | if (method_exists($this->calendar, 'prevWeek')) { |
| 404 | 404 | return $this->calendar->prevWeek($format); |
| 405 | 405 | } else { |
| 406 | - require_once __DIR__ . '/PEAR.php'; |
|
| 407 | - PEAR::raiseError('Cannot call prevWeek on Calendar object of type: ' . get_class($this->calendar), 133, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar_Decorator::prevWeek()'); |
|
| 406 | + require_once __DIR__.'/PEAR.php'; |
|
| 407 | + PEAR::raiseError('Cannot call prevWeek on Calendar object of type: '.get_class($this->calendar), 133, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar_Decorator::prevWeek()'); |
|
| 408 | 408 | |
| 409 | 409 | return false; |
| 410 | 410 | } |
@@ -422,8 +422,8 @@ discard block |
||
| 422 | 422 | if (method_exists($this->calendar, 'thisWeek')) { |
| 423 | 423 | return $this->calendar->thisWeek($format); |
| 424 | 424 | } else { |
| 425 | - require_once __DIR__ . '/PEAR.php'; |
|
| 426 | - PEAR::raiseError('Cannot call thisWeek on Calendar object of type: ' . get_class($this->calendar), 133, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar_Decorator::thisWeek()'); |
|
| 425 | + require_once __DIR__.'/PEAR.php'; |
|
| 426 | + PEAR::raiseError('Cannot call thisWeek on Calendar object of type: '.get_class($this->calendar), 133, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar_Decorator::thisWeek()'); |
|
| 427 | 427 | |
| 428 | 428 | return false; |
| 429 | 429 | } |
@@ -441,8 +441,8 @@ discard block |
||
| 441 | 441 | if (method_exists($this->calendar, 'nextWeek')) { |
| 442 | 442 | return $this->calendar->nextWeek($format); |
| 443 | 443 | } else { |
| 444 | - require_once __DIR__ . '/PEAR.php'; |
|
| 445 | - PEAR::raiseError('Cannot call thisWeek on Calendar object of type: ' . get_class($this->calendar), 133, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar_Decorator::nextWeek()'); |
|
| 444 | + require_once __DIR__.'/PEAR.php'; |
|
| 445 | + PEAR::raiseError('Cannot call thisWeek on Calendar object of type: '.get_class($this->calendar), 133, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar_Decorator::nextWeek()'); |
|
| 446 | 446 | |
| 447 | 447 | return false; |
| 448 | 448 | } |