mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
19 lines
No EOL
425 B
PHP
19 lines
No EOL
425 B
PHP
<?php
|
|
//This file is part of NOALYSS and is under GPL
|
|
//see licence.txt
|
|
|
|
/**
|
|
* @file
|
|
* @brief show the calendar
|
|
*/
|
|
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
|
|
|
|
require_once NOALYSS_INCLUDE.'/class_calendar.php';
|
|
$cal=new Calendar();
|
|
$cal->default_periode=(isset ($_GET['in']))?$_GET['in']:$g_user->get_periode();
|
|
|
|
?>
|
|
<div id="calendar_zoom_div">
|
|
|
|
<?php echo $cal->display('long',1); ?>
|
|
</div>
|