Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104582866
PholioRemarkupRule.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, Mar 10, 16:05
Size
599 B
Mime Type
text/x-php
Expires
Wed, Mar 12, 16:05 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
24816321
Attached To
rPH Phabricator
PholioRemarkupRule.php
View Options
<?php
final
class
PholioRemarkupRule
extends
PhabricatorRemarkupRuleObject
{
protected
function
getObjectNamePrefix
()
{
return
'M'
;
}
protected
function
loadObjects
(
array
$ids
)
{
$viewer
=
$this
->
getEngine
()->
getConfig
(
'viewer'
);
return
id
(
new
PholioMockQuery
())
->
setViewer
(
$viewer
)
->
needImages
(
true
)
->
needTokenCounts
(
true
)
->
withIDs
(
$ids
)
->
execute
();
}
protected
function
renderObjectEmbed
(
$object
,
$handle
,
$options
)
{
$embed_mock
=
id
(
new
PholioMockEmbedView
())
->
setMock
(
$object
);
return
$embed_mock
->
render
();
}
}
Event Timeline
Log In to Comment