Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96532080
PhabricatorRepositoryDescriptionTransaction.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, Dec 27, 17:08
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Dec 29, 17:08 (1 d, 8 h)
Engine
blob
Format
Raw Data
Handle
23200047
Attached To
rPH Phabricator
PhabricatorRepositoryDescriptionTransaction.php
View Options
<?php
final
class
PhabricatorRepositoryDescriptionTransaction
extends
PhabricatorRepositoryTransactionType
{
const
TRANSACTIONTYPE
=
'repo:description'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getDetail
(
'description'
);
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setDetail
(
'description'
,
$value
);
}
public
function
getTitle
()
{
return
pht
(
'%s updated the description for this repository.'
,
$this
->
renderAuthor
());
}
public
function
hasChangeDetailView
()
{
return
true
;
}
public
function
getMailDiffSectionHeader
()
{
return
pht
(
'CHANGES TO REPOSITORY 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
;
}
}
Event Timeline
Log In to Comment