mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-04 08:28:22 +02:00
Summary: This attempts some consistency in form layouts. Notably, they all now contain headers and are 16px off the sides and tops of pages. Also updated dialogs to the same look and feel. I think I got 98% of forms with this pass, but it's likely I missed some buried somewhere. TODO: will take another pass as consolidating these colors and new gradients in another diff. Test Plan: Played in my sandbox all week. Please play with it too and let me know how they feel. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6806
42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?php
|
|
|
|
final class PhabricatorOwnersDeleteController
|
|
extends PhabricatorOwnersController {
|
|
|
|
private $id;
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$this->id = $data['id'];
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$user = $request->getUser();
|
|
|
|
$package = id(new PhabricatorOwnersPackage())->load($this->id);
|
|
if (!$package) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
if ($request->isDialogFormPost()) {
|
|
$package->attachActorPHID($user->getPHID());
|
|
$package->delete();
|
|
return id(new AphrontRedirectResponse())->setURI('/owners/');
|
|
}
|
|
|
|
$text = pht('Are you sure you want to delete the "%s" package? This '.
|
|
'operation can not be undone.', $package->getName());
|
|
$dialog = id(new AphrontDialogView())
|
|
->setUser($user)
|
|
->setTitle('Really delete this package?')
|
|
->appendChild(hsprintf(
|
|
'<p>%s</p>',
|
|
$text))
|
|
->addSubmitButton(pht('Delete'))
|
|
->addCancelButton('/owners/package/'.$package->getID().'/')
|
|
->setSubmitURI($request->getRequestURI());
|
|
|
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
|
}
|
|
|
|
}
|