Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99620537
DifferentialRevisionHoldDraftTransaction.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
Sat, Jan 25, 19:58
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 27, 19:58 (2 d)
Engine
blob
Format
Raw Data
Handle
23834251
Attached To
rPH Phabricator
DifferentialRevisionHoldDraftTransaction.php
View Options
<?php
final
class
DifferentialRevisionHoldDraftTransaction
extends
DifferentialRevisionTransactionType
{
const
TRANSACTIONTYPE
=
'draft'
;
const
EDITKEY
=
'draft'
;
public
function
generateOldValue
(
$object
)
{
return
(
bool
)
$object
->
getHoldAsDraft
();
}
public
function
generateNewValue
(
$object
,
$value
)
{
return
(
bool
)
$value
;
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setHoldAsDraft
(
$value
);
// If draft isn't the default state but we're creating a new revision
// and holding it as a draft, put it in draft mode. See PHI206.
// TODO: This can probably be removed once Draft is the universal default.
if
(
$this
->
isNewObject
())
{
if
(
$object
->
isNeedsReview
())
{
$object
->
setModernRevisionStatus
(
DifferentialRevisionStatus
::
DRAFT
);
}
}
}
public
function
getTitle
()
{
if
(
$this
->
getNewValue
())
{
return
pht
(
'%s held this revision as a draft.'
,
$this
->
renderAuthor
());
}
else
{
return
pht
(
'%s set this revision to automatically submit once builds complete.'
,
$this
->
renderAuthor
());
}
}
public
function
getTitleForFeed
()
{
if
(
$this
->
getNewValue
())
{
return
pht
(
'%s held %s as a draft.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
else
{
return
pht
(
'%s set %s to automatically submit once builds complete.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
}
}
Event Timeline
Log In to Comment