Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101398606
PonderQuestionStatusController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 10, 02:04
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Feb 12, 02:04 (2 d)
Engine
blob
Format
Raw Data
Handle
24151960
Attached To
rPH Phabricator
PonderQuestionStatusController.php
View Options
<?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
(
PonderQuestionStatusTransaction
::
TRANSACTIONTYPE
)
->
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
);
}
}
Event Timeline
Log In to Comment