Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2992270
ConpherenceTransactionView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
6 KB
Referenced Files
None
Subscribers
None
ConpherenceTransactionView.php
View Options
<?php
final
class
ConpherenceTransactionView
extends
AphrontView
{
private
$conpherenceThread
;
private
$conpherenceTransaction
;
private
$handles
;
private
$markupEngine
;
private
$classes
=
array
(
)
;
private
$searchResult
;
private
$timeOnly
;
public
function
setConpherenceThread
(
ConpherenceThread
$t
)
{
$this
->
conpherenceThread
=
$t
;
return
$this
;
}
private
function
getConpherenceThread
(
)
{
return
$this
->
conpherenceThread
;
}
public
function
setConpherenceTransaction
(
ConpherenceTransaction
$tx
)
{
$this
->
conpherenceTransaction
=
$tx
;
return
$this
;
}
private
function
getConpherenceTransaction
(
)
{
return
$this
->
conpherenceTransaction
;
}
public
function
setHandles
(
array
$handles
)
{
assert_instances_of
(
$handles
,
'PhabricatorObjectHandle'
)
;
$this
->
handles
=
$handles
;
return
$this
;
}
public
function
getHandles
(
)
{
return
$this
->
handles
;
}
public
function
setMarkupEngine
(
PhabricatorMarkupEngine
$markup_engine
)
{
$this
->
markupEngine
=
$markup_engine
;
return
$this
;
}
private
function
getMarkupEngine
(
)
{
return
$this
->
markupEngine
;
}
public
function
addClass
(
$class
)
{
$this
->
classes
[
]
=
$class
;
return
$this
;
}
public
function
setSearchResult
(
$result
)
{
$this
->
searchResult
=
$result
;
return
$this
;
}
public
function
render
(
)
{
$viewer
=
$this
->
getUser
(
)
;
if
(
!
$viewer
)
{
throw
new
PhutilInvalidStateException
(
'setUser'
)
;
}
require_celerity_resource
(
'conpherence-transaction-css'
)
;
$transaction
=
$this
->
getConpherenceTransaction
(
)
;
switch
(
$transaction
->
getTransactionType
(
)
)
{
case
ConpherenceThreadDateMarkerTransaction
::
TRANSACTIONTYPE
:
return
javelin_tag
(
'div'
,
array
(
'class'
=>
'conpherence-transaction-view date-marker'
,
'sigil'
=>
'conpherence-transaction-view'
,
'meta'
=>
array
(
'id'
=>
$transaction
->
getID
(
)
+
0.5
,
)
,
)
,
array
(
phutil_tag
(
'span'
,
array
(
'class'
=>
'date'
,
)
,
phabricator_format_local_time
(
$transaction
->
getDateCreated
(
)
,
$viewer
,
'M jS, Y'
)
)
,
)
)
;
}
$info
=
$this
->
renderTransactionInfo
(
)
;
$actions
=
$this
->
renderTransactionActions
(
)
;
$image
=
$this
->
renderTransactionImage
(
)
;
$content
=
$this
->
renderTransactionContent
(
)
;
$classes
=
implode
(
' '
,
$this
->
classes
)
;
$transaction_dom_id
=
'anchor-'
.
$transaction
->
getID
(
)
;
$header
=
phutil_tag_div
(
'conpherence-transaction-header grouped'
,
array
(
$actions
,
$info
)
)
;
return
javelin_tag
(
'div'
,
array
(
'class'
=>
'conpherence-transaction-view '
.
$classes
,
'id'
=>
$transaction_dom_id
,
'sigil'
=>
'conpherence-transaction-view'
,
'meta'
=>
array
(
'id'
=>
$transaction
->
getID
(
)
,
)
,
)
,
array
(
$image
,
phutil_tag_div
(
'conpherence-transaction-detail grouped'
,
array
(
$header
,
$content
)
)
,
)
)
;
}
private
function
renderTransactionInfo
(
)
{
$viewer
=
$this
->
getUser
(
)
;
$thread
=
$this
->
getConpherenceThread
(
)
;
$transaction
=
$this
->
getConpherenceTransaction
(
)
;
$info
=
array
(
)
;
Javelin
::
initBehavior
(
'phabricator-tooltips'
)
;
$tip
=
phabricator_datetime
(
$transaction
->
getDateCreated
(
)
,
$viewer
)
;
$label
=
phabricator_time
(
$transaction
->
getDateCreated
(
)
,
$viewer
)
;
$width
=
360
;
Javelin
::
initBehavior
(
'phabricator-watch-anchor'
)
;
$anchor
=
id
(
new
PhabricatorAnchorView
(
)
)
->
setAnchorName
(
$transaction
->
getID
(
)
)
->
render
(
)
;
if
(
$this
->
searchResult
)
{
$uri
=
$thread
->
getMonogram
(
)
;
$info
[
]
=
hsprintf
(
'%s'
,
javelin_tag
(
'a'
,
array
(
'href'
=>
'/'
.
$uri
.
'#'
.
$transaction
->
getID
(
)
,
'class'
=>
'transaction-date'
,
'sigil'
=>
'conpherence-search-result-jump'
,
)
,
$tip
)
)
;
}
else
{
$info
[
]
=
hsprintf
(
'%s%s'
,
$anchor
,
javelin_tag
(
'a'
,
array
(
'href'
=>
'#'
.
$transaction
->
getID
(
)
,
'class'
=>
'transaction-date anchor-link'
,
'sigil'
=>
'has-tooltip'
,
'meta'
=>
array
(
'tip'
=>
$tip
,
'size'
=>
$width
,
)
,
)
,
$label
)
)
;
}
return
phutil_tag
(
'span'
,
array
(
'class'
=>
'conpherence-transaction-info'
,
)
,
$info
)
;
}
private
function
renderTransactionActions
(
)
{
$transaction
=
$this
->
getConpherenceTransaction
(
)
;
switch
(
$transaction
->
getTransactionType
(
)
)
{
case
PhabricatorTransactions
::
TYPE_COMMENT
:
$handles
=
$this
->
getHandles
(
)
;
$author
=
$handles
[
$transaction
->
getAuthorPHID
(
)
]
;
$actions
=
array
(
$author
->
renderLink
(
)
)
;
break
;
default
:
$actions
=
null
;
break
;
}
return
$actions
;
}
private
function
renderTransactionImage
(
)
{
$image
=
null
;
$transaction
=
$this
->
getConpherenceTransaction
(
)
;
switch
(
$transaction
->
getTransactionType
(
)
)
{
case
PhabricatorTransactions
::
TYPE_COMMENT
:
$handles
=
$this
->
getHandles
(
)
;
$author
=
$handles
[
$transaction
->
getAuthorPHID
(
)
]
;
$image_uri
=
$author
->
getImageURI
(
)
;
$image
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'conpherence-transaction-image'
,
'style'
=>
'background-image: url('
.
$image_uri
.
');'
,
)
)
;
break
;
}
return
$image
;
}
private
function
renderTransactionContent
(
)
{
$transaction
=
$this
->
getConpherenceTransaction
(
)
;
$content
=
null
;
$content_class
=
null
;
$content
=
null
;
$handles
=
$this
->
getHandles
(
)
;
switch
(
$transaction
->
getTransactionType
(
)
)
{
case
PhabricatorTransactions
::
TYPE_COMMENT
:
$this
->
addClass
(
'conpherence-comment'
)
;
$author
=
$handles
[
$transaction
->
getAuthorPHID
(
)
]
;
$comment
=
$transaction
->
getComment
(
)
;
$content
=
$this
->
getMarkupEngine
(
)
->
getOutput
(
$comment
,
PhabricatorApplicationTransactionComment
::
MARKUP_FIELD_COMMENT
)
;
$content_class
=
'conpherence-message'
;
break
;
default
:
$content
=
$transaction
->
getTitle
(
)
;
$this
->
addClass
(
'conpherence-edited'
)
;
break
;
}
$view
=
phutil_tag
(
'div'
,
array
(
'class'
=>
$content_class
,
)
,
$content
)
;
return
phutil_tag_div
(
'conpherence-transaction-content'
,
$view
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Feb 23, 07:24 (1 d, 14 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1131335
Default Alt Text
ConpherenceTransactionView.php (6 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment