noalyss
Version-9
include
calendar.inc.php
Go to the documentation of this file.
1
<?php
2
//This file is part of NOALYSS and is under GPL
3
//see licence.txt
4
5
/**
6
* @file
7
* @brief show the calendar
8
*/
9
if
( ! defined (
'ALLOWED'
) ) die(
'Appel direct ne sont pas permis'
);
10
$http
=
new
HttpInput
();
11
$cal
=
new
Calendar
();
12
$cal
->default_periode=(isset (
$_GET
[
'in'
]))?
$http
->get(
"in"
,
"number"
):
$g_user
->get_periode();
13
14
?>
15
<div
id
=
"calendar_zoom_div"
>
16
17
<?php echo
$cal
->display(
'long'
,1); ?>
18
</div>
$g_user
global $g_user
if no group available , then stop
Definition:
action.common.inc.php:46
$http
$http
Definition:
calendar.inc.php:10
$cal
$cal
Definition:
calendar.inc.php:11
$_GET
$_GET['qcode']
Definition:
category_followup.inc.php:53
Calendar
Display the calendar.
Definition:
calendar.class.php:32
HttpInput
manage the http input (get , post, request) and extract from an array
Definition:
http_input.class.php:38