friendica/mod/help.php

44 lines
838 B
PHP
Raw Normal View History

2011-04-13 16:07:21 +02:00
<?php
if(! function_exists('load_doc_file')) {
function load_doc_file($s) {
global $lang;
if(! isset($lang))
$lang = 'en';
$b = basename($s);
$d = dirname($s);
if(file_exists("$d/$lang/$b"))
return file_get_contents("$d/$lang/$b");
if(file_exists($s))
return file_get_contents($s);
return '';
2011-04-13 16:07:21 +02:00
}}
function help_content(&$a) {
global $lang;
require_once('library/markdown.php');
$text = '';
2011-04-14 11:34:43 +02:00
if($a->argc > 1) {
2011-04-13 16:07:21 +02:00
$text = load_doc_file('doc/' . $a->argv[1] . '.md');
2011-04-14 11:34:43 +02:00
$a->page['title'] = t('Help:') . ' ' . str_replace('-',' ',notags($a->argv[1]));
}
2011-04-13 16:07:21 +02:00
if(! $text) {
$text = load_doc_file('doc/Home.md');
2011-04-14 11:34:43 +02:00
$a->page['title'] = t('Help');
2011-04-13 16:07:21 +02:00
}
2011-04-14 11:34:43 +02:00
if(! strlen($text)) {
header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
notice( t('Page not found.' ) . EOL);
return;
}
2011-04-13 16:07:21 +02:00
return Markdown($text);
}