mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-02 23:48:18 +02:00
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
21 lines
475 B
PHP
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);
|
|
}
|
|
|
|
}
|