Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122372060
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
Thu, Jul 17, 11:23
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jul 19, 11:23 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27473518
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