Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91505035
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
Mon, Nov 11, 18:02
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Nov 13, 18:02 (2 d)
Engine
blob
Format
Raw Data
Handle
22274373
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
);
$engine
=
$this
->
getEngine
();
if
(
$engine
->
isTextMode
())
{
return
$result
;
}
if
(
$engine
->
isHTMLMailMode
())
{
return
phutil_tag
(
'pre'
,
array
(),
$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