aboutsummaryrefslogtreecommitdiffstats
path: root/week.php
diff options
context:
space:
mode:
authorChad Little <clittle@users.sourceforge.net>2003-09-16 06:14:16 +0000
committerChad Little <clittle@users.sourceforge.net>2003-09-16 06:14:16 +0000
commitd1187b8c0470f4d54bfa7074303c039017d2885b (patch)
tree9c75ae4a4c26510037bd0f9549174b9a7628783c /week.php
parent20c668e9def5ae16ff2384ea332fd5548e178f76 (diff)
downloadphpicalendar-d1187b8c0470f4d54bfa7074303c039017d2885b.tar.gz
phpicalendar-d1187b8c0470f4d54bfa7074303c039017d2885b.tar.bz2
phpicalendar-d1187b8c0470f4d54bfa7074303c039017d2885b.zip
more code lightening.
Diffstat (limited to 'week.php')
-rw-r--r--week.php37
1 files changed, 18 insertions, 19 deletions
diff --git a/week.php b/week.php
index e255889..18629ab 100644
--- a/week.php
+++ b/week.php
@@ -5,20 +5,20 @@ define('BASE', './');
include(BASE.'functions/ical_parser.php');
if ($minical_view == "current") $minical_view = "week";
-$starttime = "0500";
-$weekstart = 1;
-$unix_time = strtotime($getdate);
-$thisday2 = localizeDate($dateFormat_week_list, $unix_time);
-$today_today = date('Ymd', strtotime("now + $second_offset seconds"));
-$next_week = date("Ymd", strtotime("+1 week", $unix_time));
-$prev_week = date("Ymd", strtotime("-1 week", $unix_time));
-$tomorrows_date = date( "Ymd", strtotime("+1 day", $unix_time));
-$yesterdays_date = date( "Ymd", strtotime("-1 day", $unix_time));
-$start_week_time = strtotime(dateOfWeek($getdate, $week_start_day));
-$end_week_time = $start_week_time + (6 * 25 * 60 * 60);
-$start_week = localizeDate($dateFormat_week, $start_week_time);
-$end_week = localizeDate($dateFormat_week, $end_week_time);
-$display_date = "$start_week - $end_week";
+$starttime = "0500";
+$weekstart = 1;
+$unix_time = strtotime($getdate);
+$thisday2 = localizeDate($dateFormat_week_list, $unix_time);
+$today_today = date('Ymd', strtotime("now + $second_offset seconds"));
+$next_week = date("Ymd", strtotime("+1 week", $unix_time));
+$prev_week = date("Ymd", strtotime("-1 week", $unix_time));
+$tomorrows_date = date( "Ymd", strtotime("+1 day", $unix_time));
+$yesterdays_date = date( "Ymd", strtotime("-1 day", $unix_time));
+$start_week_time = strtotime(dateOfWeek($getdate, $week_start_day));
+$end_week_time = $start_week_time + (6 * 25 * 60 * 60);
+$start_week = localizeDate($dateFormat_week, $start_week_time);
+$end_week = ocalizeDate($dateFormat_week, $end_week_time);
+$display_date = "$start_week - $end_week";
// For the side months
ereg ("([0-9]{4})([0-9]{2})([0-9]{2})", $getdate, $day_array2);
@@ -50,11 +50,10 @@ for ($i=0;$i<7;$i++) {
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
<title><?php echo "$calendar_name - $display_date"; ?></title>
- <link rel="stylesheet" type="text/css" href="styles/<?php echo "$style_sheet/default.css"; ?>">
+ <link rel="stylesheet" type="text/css" href="<?php echo BASE."styles/$style_sheet/default.css"; ?>">
<?php
// if RSS is enabled, set the RSS auto-discovery link
- if ($enable_rss == 'yes')
- {
+ if ($enable_rss == 'yes') {
echo "<link rel=\"alternate\" type=\"application/rss+xml\" title=\"RSS\" href=\"".$default_path."/rss/rss.php?cal=".$cal."&amp;rssview=week\">";
}
?>
@@ -366,8 +365,8 @@ for ($i=0;$i<7;$i++) {
</tr>
</table>
</td>
- <td width="20"><img src="images/spacer.gif" width="20" height="1" alt=" "></td>
- <td width="160" valign="top">
+ <td width="10"><img src="images/spacer.gif" width="10" height="1" alt=" "></td>
+ <td width="170" valign="top">
<?php include (BASE.'includes/sidebar.php'); ?>
<?php include (BASE.'includes/footer.inc.php'); ?>
</td>

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