Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93457511
PhabricatorInlineCommentInterface.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
Thu, Nov 28, 22:14
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Nov 30, 22:14 (2 d)
Engine
blob
Format
Raw Data
Handle
22643540
Attached To
rPH Phabricator
PhabricatorInlineCommentInterface.php
View Options
<?php
/**
* Shared interface used by Differential and Diffusion inline comments.
*/
interface
PhabricatorInlineCommentInterface
extends
PhabricatorMarkupInterface
{
const
MARKUP_FIELD_BODY
=
'markup:body'
;
const
STATE_UNDONE
=
'undone'
;
const
STATE_DRAFT
=
'draft'
;
const
STATE_UNDRAFT
=
'undraft'
;
const
STATE_DONE
=
'done'
;
public
function
setChangesetID
(
$id
);
public
function
getChangesetID
();
public
function
setIsNewFile
(
$is_new
);
public
function
getIsNewFile
();
public
function
setLineNumber
(
$number
);
public
function
getLineNumber
();
public
function
setLineLength
(
$length
);
public
function
getLineLength
();
public
function
setReplyToCommentPHID
(
$phid
);
public
function
getReplyToCommentPHID
();
public
function
setHasReplies
(
$has_replies
);
public
function
getHasReplies
();
public
function
setIsDeleted
(
$deleted
);
public
function
getIsDeleted
();
public
function
setFixedState
(
$state
);
public
function
getFixedState
();
public
function
setContent
(
$content
);
public
function
getContent
();
public
function
setCache
(
$cache
);
public
function
getCache
();
public
function
setAuthorPHID
(
$phid
);
public
function
getAuthorPHID
();
public
function
setSyntheticAuthor
(
$synthetic_author
);
public
function
getSyntheticAuthor
();
public
function
isCompatible
(
PhabricatorInlineCommentInterface
$inline
);
public
function
isDraft
();
public
function
save
();
public
function
delete
();
public
function
setIsGhost
(
$is_ghost
);
public
function
getIsGhost
();
public
function
supportsHiding
();
public
function
isHidden
();
public
function
getDateModified
();
public
function
getDateCreated
();
}
Event Timeline
Log In to Comment