55 lines
1.6 KiB
PHP
55 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* Admintemplate zur Protokollausgabe
|
|
*
|
|
* @package baseContent
|
|
* @subpackage basecontent
|
|
*/
|
|
echo'<?xml version="1.0" encoding="iso-8859-1" ?>'."\n"; ?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
|
|
<head>
|
|
<title><?php echo $this->get_field('title') ?> - <?php $this->get_siteTitle() ?></title>
|
|
<?php $this->get_element('admin_head'); ?>
|
|
|
|
</head>
|
|
<body><div id="wrapper">
|
|
|
|
<div id="kopf">
|
|
<h1><img src="/public/img/admin/basecontent.gif" width="468" height="54" alt="baseContent" /></h1>
|
|
<p id="logout"><a href="/basecontent/logout/">» <?php $this->get_username(); ?> Logout</a></p>
|
|
|
|
<div id="bc_nav">
|
|
<?php $this->get_element('bc_nav', array('section'=>'basecontent')); ?>
|
|
</div>
|
|
|
|
<div id="bc_intern">
|
|
<ul>
|
|
<li><a href="/basecontent/options/">Einstellungen</a></li>
|
|
<li><a href="/basecontent/protocol/">Protokoll</a></li>
|
|
<li><a href="/basecontent/support/">Support</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<h2><?php $this->get_siteTitle(); ?></h2>
|
|
</div>
|
|
|
|
<div id="logfile">
|
|
|
|
<h2>Protokoll</h2>
|
|
<pre>
|
|
<?php echo $this->get_field('logfile'); ?>
|
|
</pre>
|
|
<p>Ende der Logfileausgabe<br />(Es wurden nur die 30 letzten Aktionen angezeigt.)</p>
|
|
|
|
</div>
|
|
|
|
<div id="unten">
|
|
<p> </p>
|
|
<p class="print-info">Diese Inhalte sind unter der Adresse <a style="font-weight:bold;" href="<?php echo ($this->current_url() ); ?>"><?php echo ($this->current_url() ); ?></a> zu erreichen.</p>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|