You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
766 B
32 lines
766 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
use \Michelf\MarkdownExtra;
|
|
|
|
/**
|
|
* Responses to AJAX calls
|
|
*/
|
|
|
|
require_once __DIR__.'/../global.inc.php';
|
|
|
|
api_block_anonymous_users();
|
|
|
|
$action = $_REQUEST['a'];
|
|
|
|
switch ($action) {
|
|
case 'md_to_html':
|
|
$plugin = isset($_GET['plugin']) ? $_GET['plugin'] : '';
|
|
$appPlugin = new AppPlugin();
|
|
$pluginInfo = $appPlugin->getPluginInfo($plugin);
|
|
|
|
$html = '';
|
|
if (!empty($pluginInfo)) {
|
|
$file = api_get_path(SYS_PLUGIN_PATH).$plugin.'/README.md';
|
|
if (file_exists($file)) {
|
|
$content = file_get_contents($file);
|
|
|
|
$html = MarkdownExtra::defaultTransform($content);
|
|
}
|
|
}
|
|
echo $html;
|
|
break;
|
|
} |