62 lines
1.8 KiB
PHP
62 lines
1.8 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* allgemeines Admintemplate
|
||
|
*
|
||
|
* @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'=>'localarea')); ?>
|
||
|
</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>
|
||
|
<?php $this->get_breadcrumbs($this->cap, $this->get_field('title')); ?>
|
||
|
</div>
|
||
|
|
||
|
<div id="navigation">
|
||
|
<h2><a href="/basecontent/">baseContent</a></h2>
|
||
|
<ul>
|
||
|
<li> </li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
|
||
|
<div id="content">
|
||
|
<?php $this->get_sub_view(); ?>
|
||
|
|
||
|
<div id="spalte2">
|
||
|
<h2>baseContent info</h2>
|
||
|
<?php $this->get_element('bc_info', array('cap'=>$this->cap, 'flash'=>$this->render_flash(), 'model'=>$this) ); ?>
|
||
|
</div>
|
||
|
</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>
|