Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101675073
PholioTransactionComment.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
Wed, Feb 12, 16:25
Size
631 B
Mime Type
text/x-php
Expires
Fri, Feb 14, 16:25 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
24210313
Attached To
rPH Phabricator
PholioTransactionComment.php
View Options
<?php
/**
* @group pholio
*/
final
class
PholioTransactionComment
extends
PhabricatorApplicationTransactionComment
{
protected
$imageID
;
protected
$x
;
protected
$y
;
protected
$width
;
protected
$height
;
public
function
getApplicationTransactionObject
()
{
return
new
PholioTransaction
();
}
public
function
toDictionary
()
{
return
array
(
'id'
=>
$this
->
getID
(),
'phid'
=>
$this
->
getPHID
(),
'transactionphid'
=>
$this
->
getTransactionPHID
(),
'x'
=>
$this
->
getX
(),
'y'
=>
$this
->
getY
(),
'width'
=>
$this
->
getWidth
(),
'height'
=>
$this
->
getHeight
(),
);
}
}
Event Timeline
Log In to Comment