Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2893015
DifferentialRevisionReclaimTransaction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
2 KB
Referenced Files
None
Subscribers
None
DifferentialRevisionReclaimTransaction.php
View Options
<?php
final
class
DifferentialRevisionReclaimTransaction
extends
DifferentialRevisionActionTransaction
{
const
TRANSACTIONTYPE
=
'differential.revision.reclaim'
;
const
ACTIONKEY
=
'reclaim'
;
protected
function
getRevisionActionLabel
(
DifferentialRevision
$revision
,
PhabricatorUser
$viewer
)
{
return
pht
(
'Reclaim Revision'
)
;
}
protected
function
getRevisionActionDescription
(
DifferentialRevision
$revision
,
PhabricatorUser
$viewer
)
{
return
pht
(
'This revision will be reclaimed and reopened.'
)
;
}
public
function
getIcon
(
)
{
return
'fa-bullhorn'
;
}
public
function
getColor
(
)
{
return
'sky'
;
}
protected
function
getRevisionActionOrder
(
)
{
return
600
;
}
public
function
getActionName
(
)
{
return
pht
(
'Reclaimed'
)
;
}
public
function
getCommandKeyword
(
)
{
return
'reclaim'
;
}
public
function
getCommandAliases
(
)
{
return
array
(
)
;
}
public
function
getCommandSummary
(
)
{
return
pht
(
'Reclaim a revision.'
)
;
}
public
function
generateOldValue
(
$object
)
{
return
!
$object
->
isAbandoned
(
)
;
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
if
(
$object
->
getShouldBroadcast
(
)
)
{
$new_status
=
DifferentialRevisionStatus
::
NEEDS_REVIEW
;
}
else
{
$new_status
=
DifferentialRevisionStatus
::
DRAFT
;
}
$object
->
setModernRevisionStatus
(
$new_status
)
;
}
protected
function
validateAction
(
$object
,
PhabricatorUser
$viewer
)
{
if
(
!
$object
->
isAbandoned
(
)
)
{
throw
new
Exception
(
pht
(
'You can not reclaim this revision because it has not been '
.
'abandoned. Only abandoned revisions can be reclaimed.'
)
)
;
}
if
(
!
$this
->
isViewerRevisionAuthor
(
$object
,
$viewer
)
)
{
throw
new
Exception
(
pht
(
'You can not reclaim this revision because you are not the '
.
'revision author. You can only reclaim revisions you own.'
)
)
;
}
}
public
function
getTitle
(
)
{
return
pht
(
'%s reclaimed this revision.'
,
$this
->
renderAuthor
(
)
)
;
}
public
function
getTitleForFeed
(
)
{
return
pht
(
'%s reclaimed %s.'
,
$this
->
renderAuthor
(
)
,
$this
->
renderObject
(
)
)
;
}
public
function
getTransactionTypeForConduit
(
$xaction
)
{
return
'reclaim'
;
}
public
function
getFieldValuesForConduit
(
$object
,
$data
)
{
return
array
(
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 17:42 (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1127082
Default Alt Text
DifferentialRevisionReclaimTransaction.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment