blob: 8268b646a7b7069b0f317b803e2a8fceac2ce0d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/**
* Tidypics server configuration
*
*/
elgg_load_library('elgg:markdown');
$faq = elgg_get_plugins_path() . 'tidypics/CONFIG.txt';
$text = Markdown(file_get_contents($faq));
$content = "<div class=\"elgg-markdown\">$text</div>";
echo elgg_view_module('inline', elgg_echo('tidypics:server_config'), $content);
|