Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104801327
PhutilRemarkupEngineBlockRule.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, Mar 12, 12:29
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Mar 14, 12:29 (1 d, 18 h)
Engine
blob
Format
Raw Data
Handle
24856396
Attached To
rPHU libphutil
PhutilRemarkupEngineBlockRule.php
View Options
<?php
/**
* @group markup
* @stable
*/
abstract
class
PhutilRemarkupEngineBlockRule
{
private
$engine
;
private
$rules
=
array
();
abstract
public
function
getBlockPattern
();
abstract
public
function
shouldMergeBlocks
();
abstract
public
function
markupText
(
$text
);
protected
function
didMarkupText
()
{
return
;
}
public
function
shouldMatchBlock
(
$block
)
{
return
preg_match
(
$this
->
getBlockPattern
(),
$block
);
}
public
function
shouldContinueWithBlock
(
$block
,
$last_block
)
{
return
false
;
}
final
public
function
setEngine
(
PhutilRemarkupEngine
$engine
)
{
$this
->
engine
=
$engine
;
return
$this
;
}
final
protected
function
getEngine
()
{
return
$this
->
engine
;
}
public
function
setMarkupRules
(
array
$rules
)
{
assert_instances_of
(
$rules
,
'PhutilRemarkupRule'
);
$this
->
rules
=
$rules
;
return
$this
;
}
final
private
function
getMarkupRules
()
{
return
$this
->
rules
;
}
final
public
function
postprocess
()
{
$engine
=
$this
->
getEngine
();
$this
->
didMarkupText
();
foreach
(
$this
->
getMarkupRules
()
as
$rule
)
{
$rule
->
setEngine
(
$engine
);
$rule
->
didMarkupText
();
}
}
final
protected
function
applyRules
(
$text
)
{
$engine
=
$this
->
getEngine
();
foreach
(
$this
->
getMarkupRules
()
as
$rule
)
{
$rule
->
setEngine
(
$engine
);
$text
=
$rule
->
apply
(
$text
);
}
return
$text
;
}
}
Event Timeline
Log In to Comment