2012-12-14 07:53:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Implementation of Help view
|
|
|
|
*
|
|
|
|
* @category DMS
|
2013-02-14 11:10:53 +00:00
|
|
|
* @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");
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class which outputs the html page for Help view
|
|
|
|
*
|
|
|
|
* @category DMS
|
2013-02-14 11:10:53 +00:00
|
|
|
* @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@
|
|
|
|
*/
|
2013-02-14 11:10:53 +00:00
|
|
|
class SeedDMS_View_Help extends SeedDMS_Bootstrap_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), "");
|
|
|
|
?>
|
|
|
|
<div class="row-fluid">
|
|
|
|
<div class="span4">
|
|
|
|
<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>";
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<div class="span8">
|
|
|
|
<legend><?php printMLText('help_'.strtolower($context), array(), $context); ?></legend>
|
|
|
|
<?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
|
|
|
|
2017-08-01 16:09:01 +00:00
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php
|
2016-03-15 07:30:53 +00:00
|
|
|
$this->contentEnd();
|
2012-12-14 07:53:13 +00:00
|
|
|
$this->htmlEndPage();
|
|
|
|
} /* }}} */
|
|
|
|
}
|
|
|
|
?>
|