diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 10:05:02 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 10:05:02 +0200 |
commit | 71b503f07007346eda3d1da71d4a64f31f13d846 (patch) | |
tree | 3d1aaa880857eb05e7e9c1f2d75f309507dd9c07 /appli_3_alpha_old/ical.php | |
parent | 756f0fa75c7d8e18188dffdfbdd4416651dca9fe (diff) | |
download | 2007-AWOR-71b503f07007346eda3d1da71d4a64f31f13d846.tar.gz 2007-AWOR-71b503f07007346eda3d1da71d4a64f31f13d846.tar.bz2 2007-AWOR-71b503f07007346eda3d1da71d4a64f31f13d846.zip |
Prmère version alpha 2007-02-03+09:07:04 - 2007-02-06+12:19:50
Diffstat (limited to 'appli_3_alpha_old/ical.php')
-rw-r--r-- | appli_3_alpha_old/ical.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/appli_3_alpha_old/ical.php b/appli_3_alpha_old/ical.php new file mode 100644 index 0000000..a5f0488 --- /dev/null +++ b/appli_3_alpha_old/ical.php @@ -0,0 +1,30 @@ +<?php +require_once('include/ludo/session_verify.inc.php'); +require_once('include/ical.inc.php'); +
+$res=ERR_ICAL_NO_DATA;
+if ( isset($_SESSION['idP']) )
+{ + $res = generationIcal($_SESSION['idP'], $iCal_name, $iCal_content, $errmsg); +
+ if ( $res === 0 )
+ {
+ header("Content-disposition: attachment; filename=$iCal_name");
+ header("Content-Type: application/force-download");
+ header("Content-Transfer-Encoding: text/ics\n"); // Surtout ne pas enlever le \n
+ header("Content-Length: ". strlen($iCal_content) );
+ header("Pragma: no-cache");
+ header("Cache-Control: must-revalidate, post-check=0, pre-check=0, public");
+ header("Expires: 0"); + echo $iCal_content; + exit();
+ } +} +require_once('html_elements.inc.php'); +generate_html_doctype_and_head("Génération iCal"); +echo "<body>\n"; +generate_html_div_errmsg($errmsg); +?> +</body> +</html> +
|