streams/Zotlabs/Module/Help.php

143 lines
3.6 KiB
PHP
Raw Normal View History

2016-04-19 03:38:38 +00:00
<?php
namespace Zotlabs\Module;
2021-03-02 02:50:41 +00:00
use App;
use Zotlabs\Web\Controller;
use Zotlabs\Lib\System;
2016-04-19 03:38:38 +00:00
require_once('include/help.php');
/**
2021-03-02 00:33:20 +00:00
* You can create local site resources in doc/site
2016-04-19 03:38:38 +00:00
*/
class Help extends Controller {
2016-04-19 03:38:38 +00:00
function get() {
nav_set_selected('Help');
2016-04-19 03:38:38 +00:00
if($_REQUEST['search']) {
$o .= '<div id="help-content" class="generic-content-wrapper">';
$o .= '<div class="section-title-wrapper">';
$o .= '<h2>' . t('Documentation Search') . ' - ' . htmlspecialchars($_REQUEST['search']) . '</h2>';
$o .= '</div>';
$o .= '<div class="section-content-wrapper">';
2016-04-19 03:38:38 +00:00
$r = search_doc_files($_REQUEST['search']);
if($r) {
$o .= '<ul class="help-searchlist">';
foreach($r as $rr) {
2016-08-27 22:30:46 +00:00
$dirname = dirname($rr['v']);
$fname = basename($rr['v']);
$fname = substr($fname, 0, strrpos($fname, '.'));
$path = trim(substr($dirname, 4), '/');
$o .= '<li><a href="help/' . (($path) ? $path . '/' : '') . $fname . '" >' . ucwords(str_replace('_',' ',notags($fname))) . '</a><br>'
. '<b><i>' . 'help/' . (($path) ? $path . '/' : '') . $fname . '</i></b><br>'
. '...' . str_replace('$Projectname', System::get_platform_name(), $rr['text']) . '...<br><br></li>';
2016-04-19 03:38:38 +00:00
}
$o .= '</ul>';
$o .= '</div>';
$o .= '</div>';
}
2016-04-19 03:38:38 +00:00
return $o;
}
if(argc() > 2 && argv(argc()-2) === 'assets') {
$path = '';
for($x = 1; $x < argc(); $x ++) {
if(strlen($path))
$path .= '/';
$path .= argv($x);
}
$realpath = 'doc/' . $path;
//Set the content-type header as appropriate
$imageInfo = getimagesize($realpath);
switch ($imageInfo[2]) {
case IMAGETYPE_JPEG:
header("Content-Type: image/jpeg");
break;
case IMAGETYPE_GIF:
header("Content-Type: image/gif");
break;
case IMAGETYPE_PNG:
header("Content-Type: image/png");
break;
default:
break;
}
header("Content-Length: " . filesize($realpath));
// dump the picture and stop the script
readfile($realpath);
killme();
}
2021-03-02 02:39:33 +00:00
if (argc() === 1) {
$files = self::listdir('doc');
if ($files) {
foreach ($files as $file) {
if ((! strpos($file,'/site/')) && file_exists(str_replace('doc/','doc/site/',$file))) {
continue;
}
if (strpos($file,'README')) {
continue;
}
if (preg_match('/\/(..|..\-..)\//',$file,$matches)) {
$language = $matches[1];
}
else {
$language = t('Unknown language');
}
2021-03-02 02:50:41 +00:00
if ($language === substr(App::$language,0,2)) {
$language = '';
}
2021-03-02 02:39:33 +00:00
$link = str_replace( [ 'doc/', '.mc' ], [ 'help/', '' ], $file);
if (strpos($link,'/global/') !== false || strpos($link,'/media/') !== false) {
continue;
}
2021-03-02 02:50:41 +00:00
$content .= '<div class="nav-pills"><a href="' . $link . '">' . ucfirst(basename($link)) . '</a></div>' . (($language) ? " [$language]" : '') . EOL;
2021-03-02 02:39:33 +00:00
}
}
}
else {
$content = get_help_content();
}
return replace_macros(get_markup_template('help.tpl'), array(
'$title' => t('$Projectname Documentation'),
'$tocHeading' => t('Contents'),
'$content' => $content,
'$heading' => $heading,
'$language' => $language
2016-04-19 03:38:38 +00:00
));
}
2021-03-02 02:39:33 +00:00
static function listdir($path) {
$results = [];
$handle = opendir($path);
if (! $handle) {
return $results;
}
while (false !== ($file = readdir($handle))) {
if ($file === '.' || $file === '..') {
continue;
}
if (is_dir($path . '/' . $file)) {
$results = array_merge($results, self::listdir($path . '/' . $file));
}
else {
$results[] = $path . '/' . $file;
}
}
closedir($handle);
return $results;
}
2016-04-19 03:38:38 +00:00
}