Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F538063
PhabricatorProjectColumnHideController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
PhabricatorProjectColumnHideController.php
View Options
<?php
final
class
PhabricatorProjectColumnHideController
extends
PhabricatorProjectBoardController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$project_id
=
$request
->
getURIData
(
'projectID'
);
$project
=
id
(
new
PhabricatorProjectQuery
())
->
setViewer
(
$viewer
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
withIDs
(
array
(
$project_id
))
->
executeOne
();
if
(!
$project
)
{
return
new
Aphront404Response
();
}
$this
->
setProject
(
$project
);
$column
=
id
(
new
PhabricatorProjectColumnQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$column
)
{
return
new
Aphront404Response
();
}
$column_phid
=
$column
->
getPHID
();
$view_uri
=
$project
->
getWorkboardURI
();
$view_uri
=
new
PhutilURI
(
$view_uri
);
foreach
(
$request
->
getPassthroughRequestData
()
as
$key
=>
$value
)
{
$view_uri
->
replaceQueryParam
(
$key
,
$value
);
}
if
(
$column
->
isDefaultColumn
())
{
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'Can Not Hide Default Column'
))
->
appendParagraph
(
pht
(
'You can not hide the default/backlog column on a board.'
))
->
addCancelButton
(
$view_uri
,
pht
(
'Okay'
));
}
$proxy
=
$column
->
getProxy
();
if
(
$request
->
isFormPost
())
{
if
(
$proxy
)
{
if
(
$proxy
->
isArchived
())
{
$new_status
=
PhabricatorProjectStatus
::
STATUS_ACTIVE
;
}
else
{
$new_status
=
PhabricatorProjectStatus
::
STATUS_ARCHIVED
;
}
$xactions
=
array
();
$xactions
[]
=
id
(
new
PhabricatorProjectTransaction
())
->
setTransactionType
(
PhabricatorProjectStatusTransaction
::
TRANSACTIONTYPE
)
->
setNewValue
(
$new_status
);
id
(
new
PhabricatorProjectTransactionEditor
())
->
setActor
(
$viewer
)
->
setContentSourceFromRequest
(
$request
)
->
setContinueOnNoEffect
(
true
)
->
setContinueOnMissingFields
(
true
)
->
applyTransactions
(
$proxy
,
$xactions
);
}
else
{
if
(
$column
->
isHidden
())
{
$new_status
=
PhabricatorProjectColumn
::
STATUS_ACTIVE
;
}
else
{
$new_status
=
PhabricatorProjectColumn
::
STATUS_HIDDEN
;
}
$type_status
=
PhabricatorProjectColumnStatusTransaction
::
TRANSACTIONTYPE
;
$xactions
=
array
(
id
(
new
PhabricatorProjectColumnTransaction
())
->
setTransactionType
(
$type_status
)
->
setNewValue
(
$new_status
),
);
$editor
=
id
(
new
PhabricatorProjectColumnTransactionEditor
())
->
setActor
(
$viewer
)
->
setContinueOnNoEffect
(
true
)
->
setContinueOnMissingFields
(
true
)
->
setContentSourceFromRequest
(
$request
)
->
applyTransactions
(
$column
,
$xactions
);
}
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$view_uri
);
}
if
(
$proxy
)
{
if
(
$column
->
isHidden
())
{
$title
=
pht
(
'Activate and Show Column'
);
$body
=
pht
(
'This column is hidden because it represents an archived '
.
'subproject. Do you want to activate the subproject so the '
.
'column is visible again?'
);
$button
=
pht
(
'Activate Subproject'
);
}
else
{
$title
=
pht
(
'Archive and Hide Column'
);
$body
=
pht
(
'This column is visible because it represents an active '
.
'subproject. Do you want to hide the column by archiving the '
.
'subproject?'
);
$button
=
pht
(
'Archive Subproject'
);
}
}
else
{
if
(
$column
->
isHidden
())
{
$title
=
pht
(
'Show Column'
);
$body
=
pht
(
'Are you sure you want to show this column?'
);
$button
=
pht
(
'Show Column'
);
}
else
{
$title
=
pht
(
'Hide Column'
);
$body
=
pht
(
'Are you sure you want to hide this column? It will no longer '
.
'appear on the workboard.'
);
$button
=
pht
(
'Hide Column'
);
}
}
$dialog
=
$this
->
newDialog
()
->
setWidth
(
AphrontDialogView
::
WIDTH_FORM
)
->
setTitle
(
$title
)
->
appendChild
(
$body
)
->
addCancelButton
(
$view_uri
)
->
addSubmitButton
(
$button
);
foreach
(
$request
->
getPassthroughRequestData
()
as
$key
=>
$value
)
{
$dialog
->
addHiddenInput
(
$key
,
$value
);
}
return
$dialog
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 8:31 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
119874
Default Alt Text
PhabricatorProjectColumnHideController.php (4 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment