1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
<?php
/*
* $Id: view_l.php,v 1.27 2004/11/14 00:07:27 musus Exp $
*
* Page Description:
* This page will display the month "view" with all users's events
* on the same calendar. (The other month "view" displays each user
* calendar in a separate column, side-by-side.) This view gives you
* the same effect as enabling layers, but with layers you can only
* have one configuration of users.
*
* Input Parameters:
* id (*) - specify view id in webcal_view table
* date - specify the starting date of the view.
* If not specified, current date will be used.
* friendly - if set to 1, then page does not include links or
* trailer navigation.
* (*) required field
*
* Security:
* Must have "allow view others" enabled ($allow_view_other) in
* System Settings unless the user is an admin user ($is_admin).
* Must be owner of the view.
*/
include_once 'includes/init.php';
$error = "";
if ( $allow_view_other == "N" && ! $is_admin ) {
// not allowed...
do_redirect ( "$STARTVIEW.php" );
}
if ( empty ( $id ) ) {
do_redirect ( "views.php" );
}
// Find view name in $views[]
$view_name = "";
for ( $i = 0; $i < count ( $views ); $i++ ) {
if ( $views[$i]['cal_view_id'] == $id ) {
$view_name = $views[$i]['cal_name'];
}
}
// If view_name not found, then the specified view id does not
// belong to current user.
if ( empty ( $view_name ) ) {
$error = translate ( "You are not authorized" );
}
$INC = array('js/popups.php');
print_header($INC);
set_today($date);
$next = mktime ( 3, 0, 0, $thismonth + 1, 1, $thisyear );
$nextyear = date ( "Y", $next );
$nextmonth = date ( "m", $next );
$nextdate = sprintf ( "%04d%02d01", $nextyear, $nextmonth );
$prev = mktime ( 3, 0, 0, $thismonth - 1, 1, $thisyear );
$prevyear = date ( "Y", $prev );
$prevmonth = date ( "m", $prev );
$prevdate = sprintf ( "%04d%02d01", $prevyear, $prevmonth );
if ( ! empty ( $bold_days_in_year ) && $bold_days_in_year == 'Y' ) {
$boldDays = true;
$startdate = sprintf ( "%04d%02d01", $prevyear, $prevmonth );
$enddate = sprintf ( "%04d%02d31", $nextyear, $nextmonth );
} else {
$boldDays = false;
$startdate = sprintf ( "%04d%02d01", $thisyear, $thismonth );
$enddate = sprintf ( "%04d%02d31", $thisyear, $thismonth );
}
$monthstart = mktime ( 3, 0, 0, $thismonth, 1, $thisyear );
$monthend = mktime ( 3, 0, 0, $thismonth + 1, 0, $thisyear );
$thisdate = $startdate;
// get users in this view
$res = dbi_query (
"SELECT cal_login FROM webcal_view_user WHERE cal_view_id = $id" );
$viewusers = array ();
if ( $res ) {
while ( $row = dbi_fetch_row ( $res ) ) {
$viewusers[] = $row[0];
}
dbi_free_result ( $res );
} else {
$error = translate ( "Database error" ) . ": " . dbi_error ();
}
if ( count ( $viewusers ) == 0 ) {
// no need to translate the following since it should not happen
// unless the db gets screwed up.
$error = "No users for this view";
}
if ( ! empty ( $error ) ) {
echo "<h2>" . translate ( "Error" ) .
"</h2>\n" . $error;
print_trailer ();
exit;
}
$e_save = array ();
$re_save = array ();
for ( $i = 0; $i < count ( $viewusers ); $i++ ) {
/* Pre-Load the repeated events for quckier access */
$repeated_events = read_repeated_events ( $viewusers[$i], "", $startdate );
$re_save = array_merge($re_save, $repeated_events);
/* Pre-load the non-repeating events for quicker access */
$events = read_events ( $viewusers[$i], $startdate, $enddate );
$e_save = array_merge($e_save, $events);
}
$events = array ();
$repeated_events = array ();
for ( $i = 0; $i < count ( $e_save ); $i++ ) {
$should_add = 1;
for ( $j = 0; $j < count ( $events ) && $should_add; $j++ ) {
if ( $e_save[$i]['cal_id'] == $events[$j]['cal_id'] ) {
$should_add = 0;
}
}
if ( $should_add ) {
array_push ( $events, $e_save[$i] );
}
}
for ( $i = 0; $i < count ( $re_save ); $i++ ) {
$should_add = 1;
for ( $j = 0; $j < count ( $repeated_events ) && $should_add; $j++ ) {
if ( $re_save[$i]['cal_id'] == $repeated_events[$j]['cal_id'] ) {
$should_add = 0;
}
}
if ( $should_add ) {
array_push ( $repeated_events, $re_save[$i] );
}
}
display_small_month ( $prevmonth, $prevyear, true, true, "prevmonth", "view_l.php?id=$id&" );
display_small_month ( $nextmonth, $nextyear, true, true, "nextmonth", "view_l.php?id=$id&" );
?>
<div class="title">
<span class="date"><br /><?php
echo date_to_str ( sprintf ( "%04d%02d01", $thisyear, $thismonth ),
$DATE_FORMAT_MY, false, false );
?></span>
<span class="viewname"><br /><?php
echo $view_name;
?></span></div>
<br /><br /><br /><br />
<table class="main" style="clear:both;" cellspacing="0" cellpadding="0">
<tr>
<?php if ( $WEEK_START == 0 ) { ?>
<th class="weekend"><?php etranslate("Sun")?></th>
<?php } ?>
<th><?php etranslate("Mon")?></th>
<th><?php etranslate("Tue")?></th>
<th><?php etranslate("Wed")?></th>
<th><?php etranslate("Thu")?></th>
<th><?php etranslate("Fri")?></th>
<th class="weekend"><?php etranslate("Sat")?></th>
<?php if ( $WEEK_START == 1 ) { ?>
<th class="weekend"><?php etranslate("Sun")?></th>
<?php } ?>
</tr>
<?php
// We add 2 hours on to the time so that the switch to DST doesn't
// throw us off. So, all our dates are 2AM for that day.
//$sun = get_sunday_before ( $thisyear, $thismonth, 1 );
if ( $WEEK_START == 1 )
$wkstart = get_monday_before ( $thisyear, $thismonth, 1 );
else
$wkstart = get_sunday_before ( $thisyear, $thismonth, 1 );
// generate values for first day and last day of month
$monthstart = mktime ( 3, 0, 0, $thismonth, 1, $thisyear );
$monthend = mktime ( 3, 0, 0, $thismonth + 1, 0, $thisyear );
// debugging
//echo "<br /><br />sun = " . date ( "D, m-d-Y", $sun ) . "<br />";
//echo "<br /><br />monthstart = " . date ( "D, m-d-Y", $monthstart ) . "<br />";
//echo "<br /><br />monthend = " . date ( "D, m-d-Y", $monthend ) . "<br />";
//NOTE: if you make HTML changes to this table, make the same changes
//to the example table in pref.php.
for ( $i = $wkstart; date ( "Ymd", $i ) <= date ( "Ymd", $monthend );
$i += ( 24 * 3600 * 7 ) ) {
print "<tr>\n";
for ( $j = 0; $j < 7; $j++ ) {
$date = $i + ( $j * 24 * 3600 );
if ( date ( "Ymd", $date ) >= date ( "Ymd", $monthstart ) &&
date ( "Ymd", $date ) <= date ( "Ymd", $monthend ) ) {
$thiswday = date ( "w", $date );
$is_weekend = ( $thiswday == 0 || $thiswday == 6 );
if ( empty ( $WEEKENDBG ) ) $is_weekend = false;
print "<td";
if ( $date == date ( "Ymd", $today ) ) {
echo " class=\"today\">";
} elseif ( $is_weekend ) {
echo " class=\"weekend\">";
} else {
echo ">";
}
//echo date ( "D, m-d-Y H:i:s", $date ) . "<br />";
print_date_entries ( date ( "Ymd", $date ),
( ! empty ( $user ) ) ? $user : $login, false );
print "</td>\n";
} else {
print "<td> </td>\n";
}
}
print "</tr>\n";
}
?>
</table><br />
<?php
echo $eventinfo;
display_unapproved_events ( ( $is_assistant || $is_nonuser_admin ? $user : $login ) );
?>
<br />
<a title="<?php
etranslate("Generate printer-friendly version")
?>" class="printer" href="view_l.php?id=<?php echo $id?>&<?php
if ( $thisyear ) {
echo "year=$thisyear&month=$thismonth&";
}
if ( ! empty ( $user ) ) echo "user=$user&";
if ( ! empty ( $cat_id ) ) echo "cat_id=$cat_id&";
?>friendly=1" target="cal_printer_friendly" onmouseover="window.status = '<?php
etranslate("Generate printer-friendly version")?>'">[<?php
etranslate("Printer Friendly")?>]</a>
<?php print_trailer ();?>
</body>
</html>
|