Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96325849
PhabricatorRemarkupFigletBlockInterpreter.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, Dec 25, 07:52
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Dec 27, 07:52 (2 d)
Engine
blob
Format
Raw Data
Handle
23161624
Attached To
rPH Phabricator
PhabricatorRemarkupFigletBlockInterpreter.php
View Options
<?php
final
class
PhabricatorRemarkupFigletBlockInterpreter
extends
PhutilRemarkupBlockInterpreter
{
public
function
getInterpreterName
()
{
return
'figlet'
;
}
/**
* @phutil-external-symbol class Text_Figlet
*/
public
function
markupContent
(
$content
,
array
$argv
)
{
$map
=
self
::
getFigletMap
();
$font
=
idx
(
$argv
,
'font'
);
$font
=
phutil_utf8_strtolower
(
$font
);
if
(
empty
(
$map
[
$font
]))
{
$font
=
'standard'
;
}
$root
=
dirname
(
phutil_get_library_root
(
'phabricator'
));
require_once
$root
.
'/externals/pear-figlet/Text/Figlet.php'
;
$figlet
=
new
Text_Figlet
();
$figlet
->
loadFont
(
$map
[
$font
]);
$result
=
$figlet
->
lineEcho
(
$content
);
if
(
$this
->
getEngine
()->
isTextMode
())
{
return
$result
;
}
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'PhabricatorMonospaced remarkup-figlet'
,
),
$result
);
}
private
static
function
getFigletMap
()
{
$root
=
dirname
(
phutil_get_library_root
(
'phabricator'
));
$dirs
=
array
(
$root
.
'/externals/figlet/fonts/'
,
$root
.
'/externals/pear-figlet/fonts/'
,
$root
.
'/resources/figlet/custom/'
,
);
$map
=
array
();
foreach
(
$dirs
as
$dir
)
{
foreach
(
Filesystem
::
listDirectory
(
$dir
,
false
)
as
$file
)
{
if
(
preg_match
(
'/
\.
flf
\z
/'
,
$file
))
{
$name
=
phutil_utf8_strtolower
(
$file
);
$name
=
preg_replace
(
'/
\.
flf
\z
/'
,
''
,
$name
);
$map
[
$name
]
=
$dir
.
$file
;
}
}
}
return
$map
;
}
}
Event Timeline
Log In to Comment