Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96120912
PhabricatorProjectArchiveController.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, Dec 22, 20:51
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Dec 24, 20:51 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23126712
Attached To
rPH Phabricator
PhabricatorProjectArchiveController.php
View Options
<?php
final
class
PhabricatorProjectArchiveController
extends
PhabricatorProjectController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$project
=
id
(
new
PhabricatorProjectQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$project
)
{
return
new
Aphront404Response
();
}
$edit_uri
=
$this
->
getApplicationURI
(
'history/'
.
$project
->
getID
().
'/'
);
if
(
$request
->
isFormPost
())
{
if
(
$project
->
isArchived
())
{
$new_status
=
PhabricatorProjectStatus
::
STATUS_ACTIVE
;
}
else
{
$new_status
=
PhabricatorProjectStatus
::
STATUS_ARCHIVED
;
}
$xactions
=
array
();
$xactions
[]
=
id
(
new
PhabricatorProjectTransaction
())
->
setTransactionType
(
PhabricatorProjectTransaction
::
TYPE_STATUS
)
->
setNewValue
(
$new_status
);
id
(
new
PhabricatorProjectTransactionEditor
())
->
setActor
(
$viewer
)
->
setContentSourceFromRequest
(
$request
)
->
setContinueOnNoEffect
(
true
)
->
setContinueOnMissingFields
(
true
)
->
applyTransactions
(
$project
,
$xactions
);
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$edit_uri
);
}
if
(
$project
->
isArchived
())
{
$title
=
pht
(
'Really activate project?'
);
$body
=
pht
(
'This project will become active again.'
);
$button
=
pht
(
'Activate Project'
);
}
else
{
$title
=
pht
(
'Really archive project?'
);
$body
=
pht
(
'This project will be moved to the archive.'
);
$button
=
pht
(
'Archive Project'
);
}
$dialog
=
id
(
new
AphrontDialogView
())
->
setUser
(
$viewer
)
->
setTitle
(
$title
)
->
appendChild
(
$body
)
->
addCancelButton
(
$edit_uri
)
->
addSubmitButton
(
$button
);
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
Event Timeline
Log In to Comment