mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Implementation of Info view
|
||
|
*
|
||
|
* @category DMS
|
||
|
* @package LetoDMS
|
||
|
* @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 Info view
|
||
|
*
|
||
|
* @category DMS
|
||
|
* @package LetoDMS
|
||
|
* @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 LetoDMS_View_Info extends LetoDMS_Bootstrap_Style {
|
||
|
|
||
|
function show() { /* {{{ */
|
||
|
$dms = $this->params['dms'];
|
||
|
$user = $this->params['user'];
|
||
|
$version = $this->params['version'];
|
||
|
|
||
|
$this->htmlStartPage($version->banner());
|
||
|
$this->globalNavigation();
|
||
|
$this->contentStart();
|
||
|
$this->pageNavigation($version->banner());
|
||
|
$this->contentContainerStart();
|
||
|
phpinfo();
|
||
|
$this->contentContainerEnd();
|
||
|
$this->contentEnd();
|
||
|
$this->htmlEndPage();
|
||
|
} /* }}} */
|
||
|
}
|
||
|
?>
|