Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116675413
FundInitiativeCloseController.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
Sun, Jun 8, 13:02
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Jun 10, 13:02 (2 d)
Engine
blob
Format
Raw Data
Handle
26655110
Attached To
rPH Phabricator
FundInitiativeCloseController.php
View Options
<?php
final
class
FundInitiativeCloseController
extends
FundController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$initiative
=
id
(
new
FundInitiativeQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$initiative
)
{
return
new
Aphront404Response
();
}
$initiative_uri
=
'/'
.
$initiative
->
getMonogram
();
$is_close
=
!
$initiative
->
isClosed
();
if
(
$request
->
isFormPost
())
{
$type_status
=
FundInitiativeTransaction
::
TYPE_STATUS
;
if
(
$is_close
)
{
$new_status
=
FundInitiative
::
STATUS_CLOSED
;
}
else
{
$new_status
=
FundInitiative
::
STATUS_OPEN
;
}
$xaction
=
id
(
new
FundInitiativeTransaction
())
->
setTransactionType
(
$type_status
)
->
setNewValue
(
$new_status
);
$editor
=
id
(
new
FundInitiativeEditor
())
->
setActor
(
$viewer
)
->
setContentSourceFromRequest
(
$request
)
->
setContinueOnMissingFields
(
true
);
$editor
->
applyTransactions
(
$initiative
,
array
(
$xaction
));
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$initiative_uri
);
}
if
(
$is_close
)
{
$title
=
pht
(
'Close Initiative?'
);
$body
=
pht
(
'Really close this initiative? Users will no longer be able to '
.
'back it.'
);
$button_text
=
pht
(
'Close Initiative'
);
}
else
{
$title
=
pht
(
'Reopen Initiative?'
);
$body
=
pht
(
'Really reopen this initiative?'
);
$button_text
=
pht
(
'Reopen Initiative'
);
}
return
$this
->
newDialog
()
->
setTitle
(
$title
)
->
appendParagraph
(
$body
)
->
addCancelButton
(
$initiative_uri
)
->
addSubmitButton
(
$button_text
);
}
}
Event Timeline
Log In to Comment