mirror of
				https://git.code.sf.net/p/seeddms/code
				synced 2025-10-26 02:31:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			87 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Implementation of Help view
 | |
|  *
 | |
|  * @category   DMS
 | |
|  * @package    SeedDMS
 | |
|  * @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
 | |
|  * @package    SeedDMS
 | |
|  * @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_Bootstrap_Style {
 | |
| 
 | |
| 	function show() { /* {{{ */
 | |
| 		$dms = $this->params['dms'];
 | |
| 		$user = $this->params['user'];
 | |
| 		$context = $this->params['context'];
 | |
| 
 | |
| 		$this->htmlStartPage(getMLText("help"));
 | |
| 		$this->globalNavigation();
 | |
| 		$this->contentStart();
 | |
| //		$this->pageNavigation(getMLText("help").": ".getMLText('help_'.strtolower($context), array(), $context), "");
 | |
| ?>
 | |
| <div class="row-fluid">
 | |
| <div class="span4">
 | |
| 	<legend>Table of contents</legend>
 | |
| <?php
 | |
| 		$d = dir("../languages/".$this->params['session']->getLanguage()."/help");
 | |
| 		echo "<ul>";
 | |
| 		while (false !== ($entry = $d->read())) {
 | |
| 			if($entry != '..' && $entry != '.') {
 | |
| 				$path_parts = pathinfo($dir."/".$entry);
 | |
| 				if($path_parts['extension'] == 'html' || $path_parts['extension'] == 'md') {
 | |
| 					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
 | |
| 
 | |
| 		$helpfile = "../languages/".$this->params['session']->getLanguage()."/help/".$context.".html";
 | |
| 		if(file_exists($helpfile))
 | |
| 			readfile($helpfile);
 | |
| 		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
 | |
| 			readfile("../languages/".$this->params['session']->getLanguage()."/help.htm");
 | |
| 		}
 | |
| 
 | |
| ?>
 | |
| </div>
 | |
| </div>
 | |
| <?php
 | |
| 		$this->contentEnd();
 | |
| 		$this->htmlEndPage();
 | |
| 	} /* }}} */
 | |
| }
 | |
| ?>
 | 
