mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
21 lines
520 B
PHP
21 lines
520 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 Image'))
|
||
|
->appendChild(pht(
|
||
|
'To add files, drag and drop them into the comment text area.'))
|
||
|
->addCancelButton('/', pht('Close'));
|
||
|
|
||
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
||
|
}
|
||
|
|
||
|
}
|