mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
f8d963a77e
Summary: Fixes T3940. Test Plan: Clicked button, looked at dialog. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley CC: nmalcolm, Korvin, epriestley, aran Maniphest Tasks: T3940 Differential Revision: https://secure.phabricator.com/D7287
20 lines
519 B
PHP
20 lines
519 B
PHP
<?php
|
|
|
|
final class PhabricatorFileUploadDialogController
|
|
extends PhabricatorFileController {
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$user = $request->getUser();
|
|
|
|
$dialog = id(new AphrontDialogView())
|
|
->setUser($user)
|
|
->setTitle(pht('Upload File'))
|
|
->appendChild(pht(
|
|
'To add files, drag and drop them into the comment text area.'))
|
|
->addCancelButton('/', pht('Close'));
|
|
|
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
|
}
|
|
|
|
}
|