Libertempo : Gestion Interactive des Congés Copyright (C) 2015 (wouldsmina) Ce programme est libre, vous pouvez le redistribuer et/ou le modifier selon les termes de la Licence Publique Générale GNU publiée par la Free Software Foundation. Ce programme est distribué car potentiellement utile, mais SANS AUCUNE GARANTIE, ni explicite ni implicite, y compris les garanties de commercialisation ou d'adaptation dans un but spécifique. Reportez-vous à la Licence Publique Générale GNU pour plus de détails. Vous devez avoir reçu une copie de la Licence Publique Générale GNU en même temps que ce programme ; si ce n'est pas le cas, écrivez à la Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, États-Unis. ************************************************************************************************* 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 any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *************************************************************************************************/ define('_PHP_CONGES', 1); define('ROOT_PATH', '../'); include ROOT_PATH . 'define.php'; defined('_PHP_CONGES') or die('Restricted access'); include INCLUDE_PATH . 'fonction.php'; include ROOT_PATH . 'fonctions_conges.php'; // for init_config_tab() \export\Fonctions::exportICSModule();
Copyright (C) 2015 (Wouldsmina) Copyright (C) 2015 (Prytoegrian) Copyright (C) 2005 (cedric chauvineau) Ce programme est libre, vous pouvez le redistribuer et/ou le modifier selon les termes de la Licence Publique Générale GNU publiée par la Free Software Foundation. Ce programme est distribué car potentiellement utile, mais SANS AUCUNE GARANTIE, ni explicite ni implicite, y compris les garanties de commercialisation ou d'adaptation dans un but spécifique. Reportez-vous à la Licence Publique Générale GNU pour plus de détails. Vous devez avoir reçu une copie de la Licence Publique Générale GNU en même temps que ce programme ; si ce n'est pas le cas, écrivez à la Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, États-Unis. ************************************************************************************************* 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 any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *************************************************************************************************/ define('ROOT_PATH', '../'); require_once ROOT_PATH . 'define.php'; $session = isset($_GET['session']) ? $_GET['session'] : (isset($_POST['session']) ? $_POST['session'] : session_id()); include_once ROOT_PATH . 'fonctions_conges.php'; include_once INCLUDE_PATH . 'fonction.php'; include_once INCLUDE_PATH . 'session.php'; \export\Fonctions::exportVCalendarModule($session);
/** * Encapsule le comportement du module d'export ics * * @return void * @access public * @static */ public static function exportICSModule() { $_SESSION['config'] = init_config_tab(); // on initialise le tableau des variables de config if ($_SESSION['config']['export_ical'] == FALSE) { header('HTTP/1.0 403 Forbidden'); exit('403 Forbidden'); } //on récupère le hash du user $usrh = $_GET['usr']; //on récupère le nom associé au hash $session_username = unhash_user($usrh); if ($session_username != "") { \export\Fonctions::export_ical($session_username); } }