1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-04-02 23:48:18 +02:00
phorge-phorge/src/applications/calendar/controller/PhabricatorCalendarController.php
epriestley ff97ed2195 Document how to export Calendar events
Summary:
Ref T10747. This explains how exports work.

Also make mail exports use the same logic as other stuff.

Test Plan: Read documentation. Did some exports.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10747

Differential Revision: https://secure.phabricator.com/D16680
2016-10-06 15:33:01 -07:00

21 lines
475 B
PHP

<?php
abstract class PhabricatorCalendarController extends PhabricatorController {
protected function newICSResponse(
PhabricatorUser $viewer,
$file_name,
array $events) {
$ics_data = id(new PhabricatorCalendarICSWriter())
->setViewer($viewer)
->setEvents($events)
->writeICSDocument();
return id(new AphrontFileResponse())
->setDownload($file_name)
->setMimeType('text/calendar')
->setContent($ics_data);
}
}