blob: b4fe552ecc039e0cb7df0bc877038b2fb0c5a16d (
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() . 'lightpics/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);
|