forked from extern/egroupware
101 lines
3.3 KiB
PHP
Executable File
101 lines
3.3 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare - Calendar *
|
|
* http://www.phpgroupware.org *
|
|
* Based on Webcalendar by Craig Knudsen <cknudsen@radix.net> *
|
|
* http://www.radix.net/~cknudsen *
|
|
* Modified by Mark Peters <skeeter@phpgroupware.org> *
|
|
* -------------------------------------------- *
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
* under the terms of the GNU General Public License as published by the *
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
* option) any later version. *
|
|
\**************************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
if (isset($friendly) && $friendly)
|
|
{
|
|
$phpgw_flags = Array(
|
|
'currentapp' => 'calendar',
|
|
'enable_nextmatchs_class' => True,
|
|
'noheader' => True,
|
|
'nonavbar' => True,
|
|
'noappheader' => True,
|
|
'noappfooter' => True,
|
|
'nofooter' => True
|
|
);
|
|
$friendly = intval($friendly);
|
|
}
|
|
else
|
|
{
|
|
$phpgw_flags = Array(
|
|
'currentapp' => 'calendar',
|
|
'enable_nextmatchs_class' => True
|
|
);
|
|
|
|
$friendly = 0;
|
|
}
|
|
|
|
$phpgw_info['flags'] = $phpgw_flags;
|
|
include('../header.inc.php');
|
|
|
|
$view = 'month';
|
|
|
|
$p = CreateObject('phpgwapi.Template',$phpgw->calendar->template_dir);
|
|
|
|
$templates = Array(
|
|
'index_t' => 'index.tpl'
|
|
);
|
|
|
|
$p->set_file($templates);
|
|
|
|
$m = mktime(0,0,0,$thismonth,1,$thisyear);
|
|
|
|
if (intval($friendly) == 0)
|
|
{
|
|
$printer = '';
|
|
$param = 'year='.$thisyear.'&month='.$thismonth.'&friendly=1&filter='.$filter.'&owner='.$owner;
|
|
$print = '<a href="'.$phpgw->link('/calendar/month.php',$param)."\" TARGET=\"cal_printer_friendly\" onMouseOver=\"window.status = '".lang('Generate printer-friendly version')."'\">[".lang('Printer Friendly').']</a>';
|
|
$minical_prev = $phpgw->calendar->mini_calendar(1,$thismonth - 1,$thisyear,'day.php');
|
|
$minical_next = $phpgw->calendar->mini_calendar(1,$thismonth + 1,$thisyear,'day.php');
|
|
}
|
|
else
|
|
{
|
|
$printer = '<body bgcolor="'.$phpgw_info['theme']['bg_color'].'">';
|
|
$print = '';
|
|
if($phpgw_info['user']['preferences']['calendar']['display_minicals'] == 'Y' || $phpgw_info['user']['preferences']['calendar']['display_minicals'])
|
|
{
|
|
$minical_prev = $phpgw->calendar->mini_calendar(1,$thismonth - 1,$thisyear,'day.php');
|
|
$minical_next = $phpgw->calendar->mini_calendar(1,$thismonth + 1,$thisyear,'day.php');
|
|
}
|
|
else
|
|
{
|
|
$minical_prev = '';
|
|
$minical_next = '';
|
|
}
|
|
}
|
|
|
|
$var = Array(
|
|
'printer_friendly' => $printer,
|
|
'bg_text' => $phpgw_info['themem']['bg_text'],
|
|
'small_calendar_prev' => $minical_prev,
|
|
'month_identifier' => lang(strftime("%B",$m)) . ' ' . $thisyear,
|
|
'username' => $phpgw->common->grab_owner_name($owner),
|
|
'small_calendar_next' => $minical_next,
|
|
'large_month' => $phpgw->calendar->display_large_month($thismonth,$thisyear,True,$owner),
|
|
'print' => $print
|
|
);
|
|
|
|
$p->set_var($var);
|
|
$p->pparse('out','index_t');
|
|
if(!isset($friendly) || $friendly == False)
|
|
{
|
|
$phpgw->common->phpgw_footer();
|
|
}
|
|
else
|
|
{
|
|
$phpgw->common->phpgw_exit();
|
|
}
|
|
?>
|