2016-06-19 22:04:34 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file mod/cal.php
|
|
|
|
* @brief The calendar module
|
2018-01-05 01:42:48 +01:00
|
|
|
* This calendar is for profile visitors and contains only the events
|
|
|
|
* of the profile owner
|
2016-06-19 22:04:34 +02:00
|
|
|
*/
|
2018-01-25 03:08:45 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-12-04 15:04:36 +01:00
|
|
|
use Friendica\Content\Feature;
|
2018-01-15 20:51:56 +01:00
|
|
|
use Friendica\Content\Nav;
|
2018-03-17 02:45:02 +01:00
|
|
|
use Friendica\Content\Widget;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2018-03-17 02:45:02 +01:00
|
|
|
use Friendica\Model\Event;
|
2017-12-17 01:21:56 +01:00
|
|
|
use Friendica\Model\Group;
|
2018-10-17 21:30:41 +02:00
|
|
|
use Friendica\Model\Item;
|
2018-01-15 03:22:39 +01:00
|
|
|
use Friendica\Model\Profile;
|
2018-01-13 15:40:34 +01:00
|
|
|
use Friendica\Protocol\DFRN;
|
2018-01-27 03:38:34 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-02-03 18:25:58 +01:00
|
|
|
use Friendica\Util\Temporal;
|
2018-10-17 14:19:58 +02:00
|
|
|
use Friendica\Util\Security;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
function cal_init(App $a)
|
|
|
|
{
|
|
|
|
if ($a->argc > 1) {
|
2018-01-13 15:40:34 +01:00
|
|
|
DFRN::autoRedir($a, $a->argv[1]);
|
2018-01-05 01:42:48 +01:00
|
|
|
}
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-08-01 07:29:58 +02:00
|
|
|
if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
|
2018-08-05 15:55:11 +02:00
|
|
|
System::httpExit(403, ['title' => L10n::t('Access denied.')]);
|
2016-06-19 22:04:34 +02:00
|
|
|
}
|
|
|
|
|
2018-08-01 07:29:58 +02:00
|
|
|
if ($a->argc < 2) {
|
2018-08-05 15:55:11 +02:00
|
|
|
System::httpExit(403, ['title' => L10n::t('Access denied.')]);
|
2018-08-01 07:29:58 +02:00
|
|
|
}
|
|
|
|
|
2018-01-15 20:51:56 +01:00
|
|
|
Nav::setSelected('events');
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-08-01 07:29:58 +02:00
|
|
|
$nick = $a->argv[1];
|
|
|
|
$user = DBA::selectFirst('user', [], ['nickname' => $nick, 'blocked' => false]);
|
|
|
|
if (!DBA::isResult($user)) {
|
2018-08-05 15:55:11 +02:00
|
|
|
System::httpExit(404, ['title' => L10n::t('Page not found.')]);
|
2018-08-01 07:29:58 +02:00
|
|
|
}
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-08-01 07:29:58 +02:00
|
|
|
$a->data['user'] = $user;
|
|
|
|
$a->profile_uid = $user['uid'];
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-08-01 07:29:58 +02:00
|
|
|
// if it's a json request abort here becaus we don't
|
|
|
|
// need the widget data
|
|
|
|
if (!empty($a->argv[2]) && ($a->argv[2] === 'json')) {
|
|
|
|
return;
|
|
|
|
}
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-08-01 07:29:58 +02:00
|
|
|
$profile = Profile::getByNickname($nick, $a->profile_uid);
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-08-01 07:29:58 +02:00
|
|
|
$account_type = Contact::getAccountType($profile);
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate("vcard-widget.tpl");
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-10-31 15:35:50 +01:00
|
|
|
$vcard_widget = Renderer::replaceMacros($tpl, [
|
2018-08-01 07:29:58 +02:00
|
|
|
'$name' => $profile['name'],
|
|
|
|
'$photo' => $profile['photo'],
|
|
|
|
'$addr' => (($profile['addr'] != "") ? $profile['addr'] : ""),
|
|
|
|
'$account_type' => $account_type,
|
|
|
|
'$pdesc' => (($profile['pdesc'] != "") ? $profile['pdesc'] : ""),
|
|
|
|
]);
|
2016-06-20 23:31:49 +02:00
|
|
|
|
2018-08-01 07:29:58 +02:00
|
|
|
$cal_widget = Widget\CalendarExport::getHTML();
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-08-01 07:29:58 +02:00
|
|
|
if (!x($a->page, 'aside')) {
|
|
|
|
$a->page['aside'] = '';
|
2016-06-19 22:04:34 +02:00
|
|
|
}
|
|
|
|
|
2018-08-01 07:29:58 +02:00
|
|
|
$a->page['aside'] .= $vcard_widget;
|
|
|
|
$a->page['aside'] .= $cal_widget;
|
|
|
|
|
2016-06-19 22:04:34 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
function cal_content(App $a)
|
|
|
|
{
|
2018-01-15 20:51:56 +01:00
|
|
|
Nav::setSelected('events');
|
2016-06-19 22:04:34 +02:00
|
|
|
|
|
|
|
// get the translation strings for the callendar
|
2018-03-17 02:45:02 +01:00
|
|
|
$i18n = Event::getStrings();
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$htpl = Renderer::getMarkupTemplate('event_head.tpl');
|
2018-10-31 15:35:50 +01:00
|
|
|
$a->page['htmlhead'] .= Renderer::replaceMacros($htpl, [
|
2017-08-26 09:32:10 +02:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2016-06-19 22:04:34 +02:00
|
|
|
'$module_url' => '/cal/' . $a->data['user']['nickname'],
|
|
|
|
'$modparams' => 2,
|
|
|
|
'$i18n' => $i18n,
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2016-06-19 22:04:34 +02:00
|
|
|
|
|
|
|
$mode = 'view';
|
|
|
|
$y = 0;
|
|
|
|
$m = 0;
|
2018-08-01 07:29:58 +02:00
|
|
|
$ignored = (x($_REQUEST, 'ignored') ? intval($_REQUEST['ignored']) : 0);
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
$format = 'ical';
|
|
|
|
if ($a->argc == 4 && $a->argv[2] == 'export') {
|
|
|
|
$mode = 'export';
|
|
|
|
$format = $a->argv[3];
|
2016-06-20 23:31:49 +02:00
|
|
|
}
|
|
|
|
|
2016-06-19 22:04:34 +02:00
|
|
|
// Setup permissions structures
|
|
|
|
$remote_contact = false;
|
|
|
|
$contact_id = 0;
|
|
|
|
|
|
|
|
$owner_uid = $a->data['user']['uid'];
|
2016-06-20 23:31:49 +02:00
|
|
|
$nick = $a->data['user']['nickname'];
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
if (x($_SESSION, 'remote') && is_array($_SESSION['remote'])) {
|
|
|
|
foreach ($_SESSION['remote'] as $v) {
|
|
|
|
if ($v['uid'] == $a->profile['profile_uid']) {
|
2016-06-19 22:04:34 +02:00
|
|
|
$contact_id = $v['cid'];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-05 01:42:48 +01:00
|
|
|
|
|
|
|
$groups = [];
|
|
|
|
if ($contact_id) {
|
2017-12-17 01:21:56 +01:00
|
|
|
$groups = Group::getIdsByContactId($contact_id);
|
2016-06-19 22:04:34 +02:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($contact_id),
|
|
|
|
intval($a->profile['profile_uid'])
|
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2016-06-19 22:04:34 +02:00
|
|
|
$remote_contact = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
$is_owner = local_user() == $a->profile['profile_uid'];
|
|
|
|
|
2018-08-01 07:29:58 +02:00
|
|
|
if ($a->profile['hidewall'] && !$is_owner && !$remote_contact) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Access to this profile has been restricted.') . EOL);
|
2016-06-19 22:04:34 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-06-22 00:39:52 +02:00
|
|
|
// get the permissions
|
2018-10-17 21:30:41 +02:00
|
|
|
$sql_perms = Item::getPermissionsSQLByUserId($owner_uid, $remote_contact, $groups);
|
2016-06-22 00:39:52 +02:00
|
|
|
// we only want to have the events of the profile owner
|
2016-06-22 15:06:14 +02:00
|
|
|
$sql_extra = " AND `event`.`cid` = 0 " . $sql_perms;
|
2016-06-19 22:04:34 +02:00
|
|
|
|
|
|
|
// get the tab navigation bar
|
2018-01-15 03:22:39 +01:00
|
|
|
$tabs = Profile::getTabs($a, false, $a->data['user']['nickname']);
|
2016-06-19 22:04:34 +02:00
|
|
|
|
|
|
|
// The view mode part is similiar to /mod/events.php
|
2018-01-05 01:42:48 +01:00
|
|
|
if ($mode == 'view') {
|
2018-01-27 03:38:34 +01:00
|
|
|
$thisyear = DateTimeFormat::localNow('Y');
|
|
|
|
$thismonth = DateTimeFormat::localNow('m');
|
2018-01-05 01:42:48 +01:00
|
|
|
if (!$y) {
|
2016-06-19 22:04:34 +02:00
|
|
|
$y = intval($thisyear);
|
2018-01-05 01:42:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!$m) {
|
2016-06-19 22:04:34 +02:00
|
|
|
$m = intval($thismonth);
|
2018-01-05 01:42:48 +01:00
|
|
|
}
|
2016-06-19 22:04:34 +02:00
|
|
|
|
|
|
|
// Put some limits on dates. The PHP date functions don't seem to do so well before 1900.
|
|
|
|
// An upper limit was chosen to keep search engines from exploring links millions of years in the future.
|
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
if ($y < 1901) {
|
2016-06-19 22:04:34 +02:00
|
|
|
$y = 1900;
|
2018-01-05 01:42:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($y > 2099) {
|
2016-06-19 22:04:34 +02:00
|
|
|
$y = 2100;
|
2018-01-05 01:42:48 +01:00
|
|
|
}
|
2016-06-19 22:04:34 +02:00
|
|
|
|
|
|
|
$nextyear = $y;
|
|
|
|
$nextmonth = $m + 1;
|
2018-01-05 01:42:48 +01:00
|
|
|
if ($nextmonth > 12) {
|
|
|
|
$nextmonth = 1;
|
2016-06-19 22:04:34 +02:00
|
|
|
$nextyear ++;
|
|
|
|
}
|
|
|
|
|
|
|
|
$prevyear = $y;
|
2018-01-05 01:42:48 +01:00
|
|
|
if ($m > 1) {
|
2016-06-19 22:04:34 +02:00
|
|
|
$prevmonth = $m - 1;
|
2018-01-05 01:42:48 +01:00
|
|
|
} else {
|
2016-06-19 22:04:34 +02:00
|
|
|
$prevmonth = 12;
|
|
|
|
$prevyear --;
|
|
|
|
}
|
|
|
|
|
2018-02-03 18:25:58 +01:00
|
|
|
$dim = Temporal::getDaysInMonth($y, $m);
|
2018-01-05 01:42:48 +01:00
|
|
|
$start = sprintf('%d-%d-%d %d:%d:%d', $y, $m, 1, 0, 0, 0);
|
|
|
|
$finish = sprintf('%d-%d-%d %d:%d:%d', $y, $m, $dim, 23, 59, 59);
|
2016-06-19 22:04:34 +02:00
|
|
|
|
|
|
|
|
2018-07-29 08:08:02 +02:00
|
|
|
if (!empty($a->argv[2]) && ($a->argv[2] === 'json')) {
|
2018-01-05 01:42:48 +01:00
|
|
|
if (x($_GET, 'start')) {
|
|
|
|
$start = $_GET['start'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x($_GET, 'end')) {
|
|
|
|
$finish = $_GET['end'];
|
|
|
|
}
|
2016-06-19 22:04:34 +02:00
|
|
|
}
|
|
|
|
|
2018-01-27 03:38:34 +01:00
|
|
|
$start = DateTimeFormat::utc($start);
|
|
|
|
$finish = DateTimeFormat::utc($finish);
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-01-27 03:38:34 +01:00
|
|
|
$adjust_start = DateTimeFormat::local($start);
|
|
|
|
$adjust_finish = DateTimeFormat::local($finish);
|
2016-06-19 22:04:34 +02:00
|
|
|
|
|
|
|
// put the event parametes in an array so we can better transmit them
|
2018-01-15 14:05:12 +01:00
|
|
|
$event_params = [
|
2018-03-17 02:45:02 +01:00
|
|
|
'event_id' => intval(defaults($_GET, 'id', 0)),
|
|
|
|
'start' => $start,
|
|
|
|
'finish' => $finish,
|
|
|
|
'adjust_start' => $adjust_start,
|
2016-06-19 22:04:34 +02:00
|
|
|
'adjust_finish' => $adjust_finish,
|
2018-03-17 02:45:02 +01:00
|
|
|
'ignore' => $ignored,
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2016-06-19 22:04:34 +02:00
|
|
|
|
|
|
|
// get events by id or by date
|
2018-03-17 02:45:02 +01:00
|
|
|
if ($event_params['event_id']) {
|
2018-08-14 03:15:39 +02:00
|
|
|
$r = Event::getListById($owner_uid, $event_params['event_id'], $sql_extra);
|
2016-06-19 22:04:34 +02:00
|
|
|
} else {
|
2018-03-17 02:45:02 +01:00
|
|
|
$r = Event::getListByDate($owner_uid, $event_params, $sql_extra);
|
2016-06-19 22:04:34 +02:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$links = [];
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2018-03-17 02:45:02 +01:00
|
|
|
$r = Event::sortByDate($r);
|
2016-12-20 21:15:53 +01:00
|
|
|
foreach ($r as $rr) {
|
2018-01-27 03:38:34 +01:00
|
|
|
$j = $rr['adjust'] ? DateTimeFormat::local($rr['start'], 'j') : DateTimeFormat::utc($rr['start'], 'j');
|
2018-01-05 01:42:48 +01:00
|
|
|
if (!x($links, $j)) {
|
2017-08-26 09:32:10 +02:00
|
|
|
$links[$j] = System::baseUrl() . '/' . $a->cmd . '#link-' . $j;
|
2016-12-20 10:35:28 +01:00
|
|
|
}
|
2016-06-19 22:04:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// transform the event in a usable array
|
2018-03-17 02:45:02 +01:00
|
|
|
$events = Event::prepareListForTemplate($r);
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-07-29 08:08:02 +02:00
|
|
|
if (!empty($a->argv[2]) && ($a->argv[2] === 'json')) {
|
2018-01-05 01:42:48 +01:00
|
|
|
echo json_encode($events);
|
|
|
|
killme();
|
2016-06-19 22:04:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// links: array('href', 'text', 'extra css classes', 'title')
|
2018-01-05 01:42:48 +01:00
|
|
|
if (x($_GET, 'id')) {
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate("event.tpl");
|
2016-06-19 22:04:34 +02:00
|
|
|
} else {
|
2017-11-07 03:22:52 +01:00
|
|
|
// if (Config::get('experimentals','new_calendar')==1){
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate("events_js.tpl");
|
2016-06-19 22:04:34 +02:00
|
|
|
// } else {
|
2018-10-31 15:44:06 +01:00
|
|
|
// $tpl = Renderer::getMarkupTemplate("events.tpl");
|
2016-06-19 22:04:34 +02:00
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get rid of dashes in key names, Smarty3 can't handle them
|
2018-01-05 01:42:48 +01:00
|
|
|
foreach ($events as $key => $event) {
|
2018-01-15 14:05:12 +01:00
|
|
|
$event_item = [];
|
2018-01-05 01:42:48 +01:00
|
|
|
foreach ($event['item'] as $k => $v) {
|
|
|
|
$k = str_replace('-', '_', $k);
|
2016-06-19 22:04:34 +02:00
|
|
|
$event_item[$k] = $v;
|
|
|
|
}
|
|
|
|
$events[$key]['item'] = $event_item;
|
|
|
|
}
|
|
|
|
|
2018-10-31 15:35:50 +01:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2018-01-05 01:42:48 +01:00
|
|
|
'$baseurl' => System::baseUrl(),
|
|
|
|
'$tabs' => $tabs,
|
2018-01-21 19:33:59 +01:00
|
|
|
'$title' => L10n::t('Events'),
|
|
|
|
'$view' => L10n::t('View'),
|
|
|
|
'$previous' => [System::baseUrl() . "/events/$prevyear/$prevmonth", L10n::t('Previous'), '', ''],
|
|
|
|
'$next' => [System::baseUrl() . "/events/$nextyear/$nextmonth", L10n::t('Next'), '', ''],
|
2018-02-03 18:25:58 +01:00
|
|
|
'$calendar' => Temporal::getCalendarTable($y, $m, $links, ' eventcal'),
|
2018-01-05 01:42:48 +01:00
|
|
|
'$events' => $events,
|
2018-01-21 19:33:59 +01:00
|
|
|
"today" => L10n::t("today"),
|
|
|
|
"month" => L10n::t("month"),
|
|
|
|
"week" => L10n::t("week"),
|
|
|
|
"day" => L10n::t("day"),
|
|
|
|
"list" => L10n::t("list"),
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2016-06-19 22:04:34 +02:00
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
if (x($_GET, 'id')) {
|
|
|
|
echo $o;
|
|
|
|
killme();
|
|
|
|
}
|
2016-06-19 22:04:34 +02:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
2016-06-20 23:31:49 +02:00
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
if ($mode == 'export') {
|
2018-08-01 07:29:58 +02:00
|
|
|
if (!intval($owner_uid)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('User not found'));
|
2016-06-20 23:31:49 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-06-22 13:50:47 +02:00
|
|
|
// Test permissions
|
2016-06-23 10:07:13 +02:00
|
|
|
// Respect the export feature setting for all other /cal pages if it's not the own profile
|
2018-08-01 07:29:58 +02:00
|
|
|
if ((local_user() !== intval($owner_uid)) && !Feature::isEnabled($owner_uid, "export_calendar")) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect('cal/' . $nick);
|
2016-06-20 23:31:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the export data by uid
|
2018-03-17 02:45:02 +01:00
|
|
|
$evexport = Event::exportListByUserId($owner_uid, $format);
|
2016-06-20 23:31:49 +02:00
|
|
|
|
2016-08-13 13:59:55 +02:00
|
|
|
if (!$evexport["success"]) {
|
2018-01-05 01:42:48 +01:00
|
|
|
if ($evexport["content"]) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('This calendar format is not supported'));
|
2018-01-05 01:42:48 +01:00
|
|
|
} else {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('No exportable data found'));
|
2018-01-05 01:42:48 +01:00
|
|
|
}
|
2016-06-20 23:31:49 +02:00
|
|
|
|
2016-08-13 13:59:55 +02:00
|
|
|
// If it the own calendar return to the events page
|
|
|
|
// otherwise to the profile calendar page
|
2018-01-05 01:42:48 +01:00
|
|
|
if (local_user() === intval($owner_uid)) {
|
2016-08-13 13:59:55 +02:00
|
|
|
$return_path = "events";
|
2018-01-05 01:42:48 +01:00
|
|
|
} else {
|
|
|
|
$return_path = "cal/" . $nick;
|
|
|
|
}
|
2016-08-13 13:59:55 +02:00
|
|
|
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect($return_path);
|
2016-06-20 23:31:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// If nothing went wrong we can echo the export content
|
2016-08-13 13:59:55 +02:00
|
|
|
if ($evexport["success"]) {
|
2016-06-20 23:31:49 +02:00
|
|
|
header('Content-type: text/calendar');
|
2018-01-21 19:33:59 +01:00
|
|
|
header('content-disposition: attachment; filename="' . L10n::t('calendar') . '-' . $nick . '.' . $evexport["extension"] . '"');
|
2016-06-20 23:31:49 +02:00
|
|
|
echo $evexport["content"];
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2016-06-19 22:04:34 +02:00
|
|
|
}
|