summaryrefslogtreecommitdiff
path: root/beta_old1/app/ical.php
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2018-06-30 11:26:37 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2018-06-30 11:26:37 +0200
commit19cdd5e2fde57d53f05570cd50f5ffd223182566 (patch)
treeed6a50c73c16b3c5a2cee8c8954e46268c256ee3 /beta_old1/app/ical.php
parent3c8d3719af0f77f8a01881b022e548d3a7d4604e (diff)
download2007-AWOR-19cdd5e2fde57d53f05570cd50f5ffd223182566.tar.gz
2007-AWOR-19cdd5e2fde57d53f05570cd50f5ffd223182566.tar.bz2
2007-AWOR-19cdd5e2fde57d53f05570cd50f5ffd223182566.zip
Renommage pour diff entre appli_3_alpha_old et beta_old1
Diffstat (limited to 'beta_old1/app/ical.php')
-rw-r--r--beta_old1/app/ical.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/beta_old1/app/ical.php b/beta_old1/app/ical.php
new file mode 100644
index 0000000..f2aeb26
--- /dev/null
+++ b/beta_old1/app/ical.php
@@ -0,0 +1,36 @@
+<?php
+$_SESSION['session_idP'] = 1;
+//require_once('include/ludo/session_verify.inc.php');
+require_once('include/ical.inc.php');
+
+$res=ERR_ICAL_NO_DATA;
+if ( isset($_SESSION['session_idP']) )
+{
+ $res = generationIcal($_SESSION['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/calendar\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");
+ /*
+ header("Accept-Ranges: bytes");
+ header("Content-Length: ". strlen($iCal_content) );
+ header("Content-Type: text/calendar");
+ */
+ echo $iCal_content;
+ exit();
+ }
+}
+require_once('include/ludo/html_elements.inc.php');
+generate_html_doctype_and_head("Génération iCal");
+echo "<body>\n";
+generate_html_div_errmsg($errmsg);
+?>
+</body>
+</html>
+