Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106669104
PhabricatorMarkupOneOff.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
Sat, Mar 29, 17:17
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Mar 31, 18:17 (2 d)
Engine
blob
Format
Raw Data
Handle
25248951
Attached To
rPH Phabricator
PhabricatorMarkupOneOff.php
View Options
<?php
/**
* Concrete object for accessing the markup engine with arbitrary blobs of
* text, like form instructions. Usage:
*
* $output = PhabricatorMarkupEngine::renderOneObject(
* id(new PhabricatorMarkupOneOff())->setContent($some_content),
* 'default',
* $viewer);
*
* This is less efficient than batching rendering, but appropriate for small
* amounts of one-off text in form instructions.
*/
final
class
PhabricatorMarkupOneOff
implements
PhabricatorMarkupInterface
{
private
$content
;
private
$preserveLinebreaks
;
public
function
setPreserveLinebreaks
(
$preserve_linebreaks
)
{
$this
->
preserveLinebreaks
=
$preserve_linebreaks
;
return
$this
;
}
public
function
setContent
(
$content
)
{
$this
->
content
=
$content
;
return
$this
;
}
public
function
getContent
()
{
return
$this
->
content
;
}
public
function
getMarkupFieldKey
(
$field
)
{
return
PhabricatorHash
::
digestForIndex
(
$this
->
getContent
()).
':oneoff'
;
}
public
function
newMarkupEngine
(
$field
)
{
if
(
$this
->
preserveLinebreaks
)
{
return
PhabricatorMarkupEngine
::
getEngine
();
}
else
{
return
PhabricatorMarkupEngine
::
getEngine
(
'nolinebreaks'
);
}
}
public
function
getMarkupText
(
$field
)
{
return
$this
->
getContent
();
}
public
function
didMarkupText
(
$field
,
$output
,
PhutilMarkupEngine
$engine
)
{
require_celerity_resource
(
'phabricator-remarkup-css'
);
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-remarkup'
,
),
$output
);
}
public
function
shouldUseMarkupCache
(
$field
)
{
return
true
;
}
}
Event Timeline
Log In to Comment