seeddms-code/views/bootstrap/class.Help.php

86 lines
2.6 KiB
PHP
Raw Normal View History

2012-12-14 07:53:13 +00:00
<?php
/**
* Implementation of Help view
*
* @category DMS
* @package SeedDMS
2012-12-14 07:53:13 +00:00
* @license GPL 2
* @version @version@
* @author Uwe Steinmann <uwe@steinmann.cx>
* @copyright Copyright (C) 2002-2005 Markus Westphal,
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
* 2010-2012 Uwe Steinmann
* @version Release: @package_version@
*/
/**
* Include parent class
*/
//require_once("class.Bootstrap.php");
2012-12-14 07:53:13 +00:00
/**
* Class which outputs the html page for Help view
*
* @category DMS
* @package SeedDMS
2012-12-14 07:53:13 +00:00
* @author Markus Westphal, Malcolm Cowe, Uwe Steinmann <uwe@steinmann.cx>
* @copyright Copyright (C) 2002-2005 Markus Westphal,
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
* 2010-2012 Uwe Steinmann
* @version Release: @package_version@
*/
class SeedDMS_View_Help extends SeedDMS_Theme_Style {
2012-12-14 07:53:13 +00:00
function show() { /* {{{ */
$dms = $this->params['dms'];
$user = $this->params['user'];
2015-06-11 04:41:49 +00:00
$context = $this->params['context'];
2012-12-14 07:53:13 +00:00
$this->htmlStartPage(getMLText("help"));
$this->globalNavigation();
$this->contentStart();
2017-08-01 16:09:01 +00:00
// $this->pageNavigation(getMLText("help").": ".getMLText('help_'.strtolower($context), array(), $context), "");
$this->rowStart();
$this->columnStart(4);
2017-08-01 16:09:01 +00:00
?>
<legend>Table of contents</legend>
<?php
2018-11-22 07:06:05 +00:00
$dir = "../languages/".$this->params['session']->getLanguage()."/help";
$d = dir($dir);
2017-08-01 16:09:01 +00:00
echo "<ul>";
while (false !== ($entry = $d->read())) {
if($entry != '..' && $entry != '.') {
$path_parts = pathinfo($dir."/".$entry);
2018-11-22 07:06:05 +00:00
if(isset($path_parts['extension']) && ($path_parts['extension'] == 'html' || $path_parts['extension'] == 'md')) {
2017-08-01 16:09:01 +00:00
echo "<li><a href=\"../out/out.Help.php?context=".$path_parts['filename']."\">".getMLText('help_'.$path_parts['filename'], array(), $path_parts['filename'])."</a></li>";
}
}
}
echo "</ul>";
$this->columnEnd();
$this->columnStart(8);
2017-08-01 16:09:01 +00:00
?>
2022-03-04 07:27:46 +00:00
<legend><?= htmlspecialchars(getMLText('help_'.strtolower($context), array(), $context)); ?></legend>
2017-08-01 16:09:01 +00:00
<?php
2012-12-14 07:53:13 +00:00
2015-06-11 04:41:49 +00:00
$helpfile = "../languages/".$this->params['session']->getLanguage()."/help/".$context.".html";
if(file_exists($helpfile))
readfile($helpfile);
2017-08-01 16:09:01 +00:00
else {
$helpfile = "../languages/".$this->params['session']->getLanguage()."/help/".$context.".md";
if(file_exists($helpfile)) {
require_once('parsedown/Parsedown.php');
$Parsedown = new Parsedown();
echo $Parsedown->text(file_get_contents($helpfile));
} else
2015-06-11 04:41:49 +00:00
readfile("../languages/".$this->params['session']->getLanguage()."/help.htm");
2017-08-01 16:09:01 +00:00
}
2012-12-14 07:53:13 +00:00
$this->columnEnd();
$this->rowEnd();
$this->contentEnd();
2012-12-14 07:53:13 +00:00
$this->htmlEndPage();
} /* }}} */
}
?>