Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F552705
FundInitiativeDescriptionTransaction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
FundInitiativeDescriptionTransaction.php
View Options
<?php
final
class
FundInitiativeDescriptionTransaction
extends
FundInitiativeTransactionType
{
const
TRANSACTIONTYPE
=
'fund:description'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getDescription
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setDescription
(
$value
);
}
public
function
shouldHide
()
{
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
if
(!
strlen
(
$old
)
&&
!
strlen
(
$new
))
{
return
true
;
}
return
false
;
}
public
function
getTitle
()
{
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
if
(
$old
===
null
)
{
return
pht
(
'%s set the initiative description.'
,
$this
->
renderAuthor
());
}
else
{
return
pht
(
'%s updated the initiative description.'
,
$this
->
renderAuthor
());
}
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s updated the initiative description for %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
public
function
hasChangeDetailView
()
{
return
true
;
}
public
function
getMailDiffSectionHeader
()
{
return
pht
(
'CHANGES TO INITIATIVE DESCRIPTION'
);
}
public
function
newChangeDetailView
()
{
$viewer
=
$this
->
getViewer
();
return
id
(
new
PhabricatorApplicationTransactionTextDiffDetailView
())
->
setViewer
(
$viewer
)
->
setOldText
(
$this
->
getOldValue
())
->
setNewText
(
$this
->
getNewValue
());
}
public
function
newRemarkupChanges
()
{
$changes
=
array
();
$changes
[]
=
$this
->
newRemarkupChange
()
->
setOldValue
(
$this
->
getOldValue
())
->
setNewValue
(
$this
->
getNewValue
());
return
$changes
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 4:39 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
123681
Default Alt Text
FundInitiativeDescriptionTransaction.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment