mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
d2ef273ecd
Summary: Ref T9096. This is a first cut at adding additional statuses, happy to add or subtract as needed... maybe even configurable? Also, the dialog doesn't seem to fire, I'll keep debugging. Test Plan: Close and Reopen many questions. Test applicationSearch params by seeing resolved questions, all questions. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T9096 Differential Revision: https://secure.phabricator.com/D13826
65 lines
1.8 KiB
PHP
65 lines
1.8 KiB
PHP
<?php
|
|
|
|
final class PonderQuestionStatusController
|
|
extends PonderController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $request->getViewer();
|
|
$id = $request->getURIData('id');
|
|
|
|
$question = id(new PonderQuestionQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($id))
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
))
|
|
->executeOne();
|
|
if (!$question) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$view_uri = '/Q'.$question->getID();
|
|
$v_status = $question->getStatus();
|
|
|
|
if ($request->isFormPost()) {
|
|
$v_status = $request->getStr('status');
|
|
|
|
$xactions = array();
|
|
$xactions[] = id(new PonderQuestionTransaction())
|
|
->setTransactionType(PonderQuestionTransaction::TYPE_STATUS)
|
|
->setNewValue($v_status);
|
|
|
|
$editor = id(new PonderQuestionEditor())
|
|
->setActor($viewer)
|
|
->setContentSourceFromRequest($request);
|
|
|
|
$editor->applyTransactions($question, $xactions);
|
|
|
|
return id(new AphrontRedirectResponse())->setURI($view_uri);
|
|
}
|
|
|
|
$radio = id(new AphrontFormRadioButtonControl())
|
|
->setLabel(pht('Status'))
|
|
->setName('status')
|
|
->setValue($v_status);
|
|
|
|
foreach (PonderQuestionStatus::getQuestionStatusMap() as $value => $name) {
|
|
$description = PonderQuestionStatus::getQuestionStatusDescription($value);
|
|
$radio->addButton($value, $name, $description);
|
|
}
|
|
|
|
$form = id(new AphrontFormView())
|
|
->setUser($viewer)
|
|
->appendChild($radio);
|
|
|
|
return $this->newDialog()
|
|
->setTitle(pht('Change Question Status'))
|
|
->appendChild($form->buildLayoutView())
|
|
->addSubmitButton(pht('Submit'))
|
|
->addCancelButton($view_uri);
|
|
|
|
}
|
|
|
|
}
|