aboutsummaryrefslogtreecommitdiffstats
path: root/functions
diff options
context:
space:
mode:
authorChad Little <clittle@users.sourceforge.net>2004-02-06 18:26:49 +0000
committerChad Little <clittle@users.sourceforge.net>2004-02-06 18:26:49 +0000
commit07effdabb09a9f27198ea0ac3cab678a221c2b44 (patch)
tree976c256aaec3e6c7165874173397c59cd6458816 /functions
parentfc55d3e44a3792b991431059505d00248005c1fc (diff)
downloadphpicalendar-07effdabb09a9f27198ea0ac3cab678a221c2b44.tar.gz
phpicalendar-07effdabb09a9f27198ea0ac3cab678a221c2b44.tar.bz2
phpicalendar-07effdabb09a9f27198ea0ac3cab678a221c2b44.zip
Minor rollover tweek for colors and on state.
Diffstat (limited to 'functions')
-rw-r--r--functions/template.php15
1 files changed, 12 insertions, 3 deletions
diff --git a/functions/template.php b/functions/template.php
index b3a6c20..b95156c 100644
--- a/functions/template.php
+++ b/functions/template.php
@@ -35,10 +35,22 @@ class Page {
$day_num = date("w", $start_day);
$weekday = $daysofweek_lang[$day_num];
$daylink = date('Ymd', $start_wt);
+ if ($daylink == $getdate) {
+ $row1 = 'rowToday';
+ $row2 = 'rowOn';
+ $row3 = 'rowToday';
+ } else {
+ $row1 = 'rowOff';
+ $row2 = 'rowOn';
+ $row3 = 'rowOff';
+ }
$start_day = strtotime("+1 day", $start_day);
$start_wt = strtotime("+1 day", $start_wt);
$loop_tmp = str_replace('{DAY}', $weekday, $loop_dof);
$loop_tmp = str_replace('{DAYLINK}', $daylink, $loop_tmp);
+ $loop_tmp = str_replace('{ROW1}', $row1, $loop_tmp);
+ $loop_tmp = str_replace('{ROW2}', $row2, $loop_tmp);
+ $loop_tmp = str_replace('{ROW3}', $row3, $loop_tmp);
$weekday_loop .= $loop_tmp;
}
$this->page = ereg_replace('<!-- loop daysofweek on -->(.*)<!-- loop daysofweek off -->', $weekday_loop, $this->page);
@@ -99,9 +111,6 @@ class Page {
$completed = trim($match1[1]);
$important = trim($match2[1]);
$normal = trim($match3[1]);
- $comp_data = '';
- $impt_data = '';
- $norm_data = '';
if (is_array($master_array['-2'])) {
foreach ($master_array['-2'] as $vtodo_times) {

© 2014-2024 Faster IT GmbH | imprint | privacy policy