Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F123589759
PhrictionTransaction.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
Mon, Jul 28, 13:20
Size
4 KB
Mime Type
text/x-php
Expires
Wed, Jul 30, 13:20 (2 d)
Engine
blob
Format
Raw Data
Handle
27673166
Attached To
rPH Phabricator
PhrictionTransaction.php
View Options
<?php
final
class
PhrictionTransaction
extends
PhabricatorApplicationTransaction
{
const
TYPE_TITLE
=
'title'
;
const
TYPE_CONTENT
=
'content'
;
const
MAILTAG_TITLE
=
'phriction-title'
;
const
MAILTAG_CONTENT
=
'phriction-content'
;
public
function
getApplicationName
()
{
return
'phriction'
;
}
public
function
getApplicationTransactionType
()
{
return
PhrictionDocumentPHIDType
::
TYPECONST
;
}
public
function
getApplicationTransactionCommentObject
()
{
return
new
PhrictionTransactionComment
();
}
public
function
getRemarkupBlocks
()
{
$blocks
=
parent
::
getRemarkupBlocks
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_CONTENT
:
$blocks
[]
=
$this
->
getNewValue
();
break
;
}
return
$blocks
;
}
public
function
shouldHide
()
{
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_CONTENT
:
if
(
$this
->
getOldValue
()
===
null
)
{
return
true
;
}
else
{
return
false
;
}
break
;
}
return
parent
::
shouldHide
();
}
public
function
getActionStrength
()
{
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_TITLE
:
return
1.4
;
case
self
::
TYPE_CONTENT
:
return
1.3
;
}
return
parent
::
getActionStrength
();
}
public
function
getActionName
()
{
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_TITLE
:
if
(
$old
===
null
)
{
return
pht
(
'Created'
);
}
return
pht
(
'Retitled'
);
case
self
::
TYPE_CONTENT
:
return
pht
(
'Edited'
);
}
return
parent
::
getActionName
();
}
public
function
getIcon
()
{
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_TITLE
:
case
self
::
TYPE_CONTENT
:
return
'fa-pencil'
;
}
return
parent
::
getIcon
();
}
public
function
getTitle
()
{
$author_phid
=
$this
->
getAuthorPHID
();
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_TITLE
:
if
(
$old
===
null
)
{
return
pht
(
'%s created this document.'
,
$this
->
renderHandleLink
(
$author_phid
));
}
return
pht
(
'%s changed the title from "%s" to "%s".'
,
$this
->
renderHandleLink
(
$author_phid
),
$old
,
$new
);
case
self
::
TYPE_CONTENT
:
return
pht
(
'%s edited the document content.'
,
$this
->
renderHandleLink
(
$author_phid
));
}
return
parent
::
getTitle
();
}
public
function
getTitleForFeed
(
PhabricatorFeedStory
$story
)
{
$author_phid
=
$this
->
getAuthorPHID
();
$object_phid
=
$this
->
getObjectPHID
();
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_TITLE
:
if
(
$old
===
null
)
{
return
pht
(
'%s created %s.'
,
$this
->
renderHandleLink
(
$author_phid
),
$this
->
renderHandleLink
(
$object_phid
));
}
return
pht
(
'%s renamed %s from "%s" to "%s".'
,
$this
->
renderHandleLink
(
$author_phid
),
$this
->
renderHandleLink
(
$object_phid
),
$old
,
$new
);
case
self
::
TYPE_CONTENT
:
return
pht
(
'%s edited the content of %s.'
,
$this
->
renderHandleLink
(
$author_phid
),
$this
->
renderHandleLink
(
$object_phid
));
}
return
parent
::
getTitleForFeed
(
$story
);
}
public
function
hasChangeDetails
()
{
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_CONTENT
:
return
true
;
}
return
parent
::
hasChangeDetails
();
}
public
function
renderChangeDetails
(
PhabricatorUser
$viewer
)
{
return
$this
->
renderTextCorpusChangeDetails
(
$viewer
,
$this
->
getOldValue
(),
$this
->
getNewValue
());
}
public
function
getMailTags
()
{
$tags
=
array
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_TITLE
:
$tags
[]
=
self
::
MAILTAG_TITLE
;
break
;
case
self
::
TYPE_CONTENT
:
$tags
[]
=
self
::
MAILTAG_CONTENT
;
break
;
}
return
$tags
;
}
}
Event Timeline
Log In to Comment