<?php
|
|
|
|
// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
|
|
//
|
|
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
|
|
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
|
|
// $Id$
|
|
|
|
function wikiplugin_mono_info()
|
|
{
|
|
return [
|
|
'name' => tra('Monospace'),
|
|
'documentation' => 'PluginMono',
|
|
'description' => tra('Display text in a monospace font'),
|
|
'prefs' => [ 'wikiplugin_mono' ],
|
|
'body' => tra('Text that the font will be applied to'),
|
|
'iconname' => 'font',
|
|
'introduced' => 1,
|
|
'params' => [
|
|
'font' => [
|
|
'required' => false,
|
|
'name' => tra('Font'),
|
|
'description' => tra('Font name as recognized by browsers.'),
|
|
'since' => '1',
|
|
'default' => 'monospace',
|
|
'filter' => 'text',
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
function wikiplugin_mono($data, $params)
|
|
{
|
|
global $tikilib;
|
|
|
|
extract($params, EXTR_SKIP);
|
|
|
|
$code = /* htmlentities( htmlspecialchars(*/ trim($data) /* ) )*/;
|
|
$code = preg_replace("/\n/", "<br />", $code);
|
|
|
|
if (! isset($font)) {
|
|
$font = "monospace";
|
|
} else {
|
|
$font .= ", monospace";
|
|
}
|
|
|
|
$style = "style=\"font-family: " . $font . ";\"";
|
|
$data = "<span " . $style . ">" . $code . "</span>";
|
|
|
|
return $data;
|
|
}
|