source: extensions/PHP_Optimisateur/files/header.php @ 8226

Last change on this file since 8226 was 8195, checked in by mistic100, 13 years ago
  • Nouveau plugin : CreateCustomThumbs permet de créer des miniatures de taille fixe
  • On peut maintenant désinstaller un plugin facilement
  • Ajout d’une option pour gérer le dossier de sortie non vide (effacer, continuer, bloquer)
File size: 1021 bytes
Line 
1<?php
2/***************************************\
3|                       PHP OPTIMISATEUR                        |
4|                          Version 1.2                          |
5\***************************************/
6
7session_start();
8$APPversion = '1.2';
9$user_lang = GetLanguage();
10include('language/'.$user_lang['Lang'].'/'.$user_lang['Lang'].'.php');
11
12echo '<?xml version="1.0" encoding="utf-8"?>
13<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
14        "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
15<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
16<head>
17        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
18        <link rel="stylesheet" type="text/css" media="screen" href="files/style.css" />
19        <title>PHP Optimisateur '.$APPversion.'</title>
20</head>
21<body>
22<div class="title">
23        PHP Optimisateur '.$APPversion.'
24       
25        <span class="lang">';
26        foreach ($user_lang['languages'] as $key) {
27                echo '<a class="lang" href="index.php?Lang='.$key.'" title="'.$key.'"><img src="language/'.$key.'/'.$key.'.png"/></a>';
28        }
29        echo '</span>
30       
31</div>';
32?>
Note: See TracBrowser for help on using the repository browser.