Source for file header.php
Documentation is available at header.php
* @package linea21.templates
* @author linea21 <info@linea21.com>
* @license http://opensource.org/licenses/gpl-3.0.html
echo '<?xml version="1.0" encoding="' . CHARSET . '" xml:lang="' . U_L. '" ?>'. END_LINE;
<!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=" <?php echo U_L; ?>">
<title> <?php echo _t('header','title');?></title>
<meta http-equiv="content-language" content=" <?php echo U_L;?>" />
<meta http-equiv="Content-Type" content="text/html; charset= <?php echo CHARSET;?>" />
<link rel="shortcut icon" href=" <?php echo THEME_ADMIN_PATH; ?>images/favicon.ico" />
<link type="text/css" rel="stylesheet" href=" <?php echo THEME_ADMIN_PATH; ?>css/reset.css" />
<link type="text/css" rel="stylesheet" href=" <?php echo THEME_ADMIN_PATH; ?>css/admin_common.css" />
<style type="text/css" media="all">
if (basename($_SERVER['SCRIPT_NAME']) != 'search.php') {
<link type="text/css" rel="stylesheet" href=" <?php echo THEME_ADMIN_PATH; ?>css/button/stylesheets/css3buttons.css" media="screen" />
<link type="text/css" rel="stylesheet" href=" <?php echo THEME_ADMIN_PATH; ?>css/admin_ie.css" />
<script type="text/javascript">
var SITE_ROOT_URL= " <?php echo SITE_ROOT_URL; ?>";
var lang = " <?php echo U_L; ?>";
<script type="text/javascript" src="../lib/js/jquery.min.js"></script>
<link href="../lib/js/jquery-ui/css/ui-lightness/jquery-ui-1.8.16.custom.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../lib/js/jquery-ui/js/jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript" src="../lib/js/humane-js/humane.min.js"></script>
<link type="text/css" rel='stylesheet' href='../lib/js/humane-js/themes/jackedup.css' />
<?php IncludeColorboxJs(array("a[href$='.jpg'],a[href$='.jpeg'],a[href$='.png'],a[href$='.gif'], a[href$='.JPG'],a[href$='.JPEG'],a[href$='.PNG'],a[href$='.GIF']")); ?>
<script type="text/javascript" src="../lib/js/functions_admin.js"></script>
<script type="text/javascript" src="../lib/js/menu.config.js"></script>
<div id="container" style="background-image: url( <?php echo THEME_ADMIN_PATH; ?>images/bgcontainer.png);">
<a href="logout.php"> <?php echo _t('header','deconnexion');?></a>
<br style="clear:both;"/>
echo _t('header','welcome');
<span> <?php echo $title; ?></span>
<br style="clear:both;"/>
<div id="containersearch">
<form method="post" action="search.php">
<input type="text" class="searchincome" name="search" id="searchincome" accesskey="s" value=" <?php echo _t('menu_alt','search_here'); ?>" onclick="if (this.defaultValue==this.value) this.value=''" onblur="if (this.value=='') this.value=this.defaultValue" />
<input type="submit" id="gosearch" name="valid" value="" />
|