egroupware_official/calendar/month.php

67 lines
2.8 KiB
PHP
Raw Normal View History

2001-01-21 05:16:15 +01:00
<?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$ */
2001-02-11 20:11:35 +01:00
$phpgw_info['flags'] = array('currentapp' => 'calendar', 'enable_nextmatchs_class' => True);
2001-01-21 05:16:15 +01:00
if (isset($friendly) && $friendly){
2001-02-11 20:11:35 +01:00
$phpgw_info['flags']['noheader'] = True;
$phpgw_info['flags']['nonavbar'] = True;
$phpgw_info['flags']['noappheader'] = True;
$phpgw_info['flags']['noappfooter'] = True;
$phpgw_info['flags']['nofooter'] = True;
2001-01-21 05:16:15 +01:00
} else {
$friendly = 0;
}
2001-02-11 20:11:35 +01:00
include('../header.inc.php');
2001-01-21 05:16:15 +01:00
$view = "month";
$p = CreateObject('phpgwapi.Template',$phpgw->common->get_tpl_dir('calendar'));
2001-01-21 05:16:15 +01:00
2001-02-11 20:11:35 +01:00
$p->set_file(array('index_t' => 'index.tpl'));
2001-02-11 20:11:35 +01:00
$p->set_block('index_t','index');
2001-01-21 05:16:15 +01:00
if ($friendly) {
2001-02-11 20:11:35 +01:00
$p->set_var('printer_friendly','<body bgcolor="'.$phpgw_info['theme']['bg_color'].'">');
2001-01-21 05:16:15 +01:00
} else {
2001-02-11 20:11:35 +01:00
$p->set_var('printer_friendly','');
2001-01-21 05:16:15 +01:00
}
2001-02-11 20:11:35 +01:00
$p->set_var('bg_text',$phpgw_info['theme']['bg_text']);
2001-01-21 05:16:15 +01:00
2001-02-17 15:22:33 +01:00
$p->set_var('small_calendar_prev',$phpgw->calendar->mini_calendar(1,$thismonth - 1,$thisyear,'day.php'));
2001-01-21 05:16:15 +01:00
2001-02-17 15:22:33 +01:00
$m = mktime(0,0,0,$thismonth,1,$thisyear);
2001-02-11 20:11:35 +01:00
$p->set_var('month_identifier',lang(strftime("%B",$m)) . ' ' . $thisyear);
$p->set_var('username',$phpgw->common->grab_owner_name($owner));
2001-02-17 15:22:33 +01:00
$p->set_var('small_calendar_next',$phpgw->calendar->mini_calendar(1,$thismonth + 1,$thisyear,'day.php'));
2001-02-11 20:11:35 +01:00
$p->set_var('large_month',$phpgw->calendar->display_large_month($thismonth,$thisyear,True,$owner));
2001-01-21 05:16:15 +01:00
if (!$friendly) {
2001-02-14 03:58:46 +01:00
$param = 'year='.$thisyear.'&month='.$thismonth.'&friendly=1&filter='.$filter.'&owner='.$owner;
2001-02-11 20:11:35 +01:00
$p->set_var('print','<a href="'.$phpgw->link('',$param).'" TARGET="cal_printer_friendly" onMouseOver="window.'
. "status = '" . lang('Generate printer-friendly version'). "'\">[". lang('Printer Friendly') . ']</a>');
$p->parse('out','index_t');
$p->pparse('out','index_t');
2001-01-21 05:16:15 +01:00
} else {
2001-02-11 20:11:35 +01:00
$p->set_var('print','');
$p->parse('out','index_t');
$p->pparse('out','index_t');
2001-01-21 05:16:15 +01:00
}
$phpgw->common->phpgw_footer();
?>