aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2003-08-24 07:24:17 +0000
committerz0rglub <z0rglub@piwigo.org>2003-08-24 07:24:17 +0000
commit0f502ef69ed74a0cd599158d3599a9834b77e850 (patch)
tree637d96c045dd72bc3d9de717ce1484653415c9d9
parent0d2e6da806d65fa94b70186a08ffe184ed89b250 (diff)
removing manuel.php
git-svn-id: http://piwigo.org/svn/trunk@56 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/manuel.php151
1 files changed, 0 insertions, 151 deletions
diff --git a/admin/manuel.php b/admin/manuel.php
deleted file mode 100644
index c36a0917e..000000000
--- a/admin/manuel.php
+++ /dev/null
@@ -1,151 +0,0 @@
-<?
-/***************************************************************************
- * manuel.php is a part of PhpWebGallery *
- * ------------------- *
- * last update : Tuesday, July 16, 2002 *
- * email : pierrick@z0rglub.com *
- * *
- ***************************************************************************/
-
-/***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; *
- * *
- ***************************************************************************/
- include_once( "./include/isadmin.inc.php" );
-
- echo"
- <table style=\"width:100%;\">
- <tr>
- <th>".$lang['help_images_title']."</th>
- </tr>
- <tr>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <td>
- <div style=\"text-align:center;margin:auto;margin-bottom:10px;\"><img src=\"".$conf['repertoire_image']."admin.png\" style=\"border:1px solid black;\" alt=\"\"/></div>
- ".$lang['help_images_intro']." :
- <ul style=\"margin-right:10px;\">";
- for ( $i = 0; $i < sizeof( $lang['help_images'] ); $i++ )
- {
- echo"
- <li>".$lang['help_images'][$i]."</li>";
- }
- echo"
- </ul>";
- echo"
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <th>".$lang['help_thumbnails_title']."</th>
- </tr>
- <tr>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <td>
- <ul style=\"margin-right:10px;\">";
- for ( $i = 0; $i < sizeof( $lang['help_thumbnails'] ); $i++ )
- {
- echo"
- <li>".$lang['help_thumbnails'][$i]."</li>";
- }
- echo"
- </ul>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <th>".$lang['help_database_title']."</th>
- </tr>
- <tr>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <td>
- <ul style=\"margin-right:10px;\">";
- for ( $i = 0; $i < sizeof( $lang['help_database'] ); $i++ )
- {
- echo"
- <li>".$lang['help_database'][$i]."</li>";
- }
- echo"
- </ul>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <th>".$lang['help_remote_title']."</th>
- </tr>
- <tr>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <td>
- <ul style=\"margin-right:10px;\">";
- for ( $i = 0; $i < sizeof( $lang['help_remote'] ); $i++ )
- {
- echo"
- <li>".$lang['help_remote'][$i]."</li>";
- }
- echo"
- </ul>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <th>".$lang['help_upload_title']."</th>
- </tr>
- <tr>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <td>
- <ul style=\"margin-right:10px;\">";
- for ( $i = 0; $i < sizeof( $lang['help_upload'] ); $i++ )
- {
- echo"
- <li>".$lang['help_upload'][$i]."</li>";
- }
- echo"
- </ul>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <th>".$lang['help_infos_title']."</th>
- </tr>
- <tr>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <td>
- <ul style=\"margin-right:10px;\">";
- for ( $i = 0; $i < sizeof( $lang['help_infos'] ); $i++ )
- {
- echo"
- <li>".$lang['help_infos'][$i]."</li>";
- }
- echo"
- </ul>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- </tr>
- </table>";
-?> \ No newline at end of file