Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90446612
DifferentialRevisionCommandeerTransaction.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
Fri, Nov 1, 18:18
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 3, 18:18 (2 d)
Engine
blob
Format
Raw Data
Handle
22065772
Attached To
rPH Phabricator
DifferentialRevisionCommandeerTransaction.php
View Options
<?php
final
class
DifferentialRevisionCommandeerTransaction
extends
DifferentialRevisionActionTransaction
{
const
TRANSACTIONTYPE
=
'differential.revision.commandeer'
;
const
ACTIONKEY
=
'commandeer'
;
protected
function
getRevisionActionLabel
()
{
return
pht
(
'Commandeer Revision'
);
}
protected
function
getRevisionActionDescription
()
{
return
pht
(
'You will take control of this revision and become its author.'
);
}
public
function
getIcon
()
{
return
'fa-flag'
;
}
public
function
getColor
()
{
return
'sky'
;
}
protected
function
getRevisionActionOrder
()
{
return
700
;
}
public
function
getActionName
()
{
return
pht
(
'Commandeered'
);
}
public
function
getCommandKeyword
()
{
return
'commandeer'
;
}
public
function
getCommandAliases
()
{
return
array
(
'claim'
,
);
}
public
function
getCommandSummary
()
{
return
pht
(
'Commandeer a revision.'
);
}
public
function
generateOldValue
(
$object
)
{
return
$object
->
getAuthorPHID
();
}
public
function
generateNewValue
(
$object
,
$value
)
{
$actor
=
$this
->
getActor
();
return
$actor
->
getPHID
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setAuthorPHID
(
$value
);
}
protected
function
validateAction
(
$object
,
PhabricatorUser
$viewer
)
{
if
(
$object
->
isClosed
())
{
throw
new
Exception
(
pht
(
'You can not commandeer this revision because it has already '
.
'been closed. You can only commandeer open revisions.'
));
}
if
(
$this
->
isViewerRevisionAuthor
(
$object
,
$viewer
))
{
throw
new
Exception
(
pht
(
'You can not commandeer this revision because you are already '
.
'the author.'
));
}
}
public
function
getTitle
()
{
return
pht
(
'%s commandeered this revision.'
,
$this
->
renderAuthor
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s commandeered %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
}
Event Timeline
Log In to Comment