source: tags/version_1_3/admin/manuel.php @ 5647

Last change on this file since 5647 was 2, checked in by z0rglub, 21 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
Line 
1<?
2/***************************************************************************
3 *               manuel.php is a part of PhpWebGallery                     *
4 *                            -------------------                          *
5 *   last update          : Tuesday, July 16, 2002                         *
6 *   email                : pierrick@z0rglub.com                           *
7 *                                                                         *
8 ***************************************************************************/
9
10/***************************************************************************
11 *                                                                         *
12 *   This program is free software; you can redistribute it and/or modify  *
13 *   it under the terms of the GNU General Public License as published by  *
14 *   the Free Software Foundation;                                         *
15 *                                                                         *
16 ***************************************************************************/
17        include_once( "./include/isadmin.inc.php" );
18       
19        echo"
20                <table style=\"width:100%;\">
21                        <tr>
22                                <th>".$lang['help_images_title']."</th>
23                        </tr>
24                        <tr>
25                                <td>&nbsp;</td>
26                        </tr>
27                        <tr>
28                                <td>
29                                        <div style=\"text-align:center;margin:auto;margin-bottom:10px;\"><img src=\"".$conf['repertoire_image']."admin.png\" style=\"border:1px solid black;\" alt=\"\"/></div>
30                                        ".$lang['help_images_intro']." :
31                                        <ul style=\"margin-right:10px;\">";
32        for ( $i = 0; $i < sizeof( $lang['help_images'] ); $i++ )
33        {
34                echo"
35                                                <li>".$lang['help_images'][$i]."</li>";
36        }
37        echo"
38                                        </ul>";
39        echo"
40                                </td>
41                        </tr>
42                        <tr>
43                                <td>&nbsp;</td>
44                        </tr>
45                        <tr>
46                                <th>".$lang['help_thumbnails_title']."</th>
47                        </tr>
48                        <tr>
49                                <td>&nbsp;</td>
50                        </tr>
51                        <tr>
52                                <td>
53                                        <ul style=\"margin-right:10px;\">";
54        for ( $i = 0; $i < sizeof( $lang['help_thumbnails'] ); $i++ )
55        {
56                echo"
57                                                <li>".$lang['help_thumbnails'][$i]."</li>";
58        }
59        echo"
60                                        </ul>
61                                </td>
62                        </tr>
63                        <tr>
64                                <td>&nbsp;</td>
65                        </tr>
66                        <tr>
67                                <th>".$lang['help_database_title']."</th>
68                        </tr>
69                        <tr>
70                                <td>&nbsp;</td>
71                        </tr>
72                        <tr>
73                                <td>
74                                        <ul style=\"margin-right:10px;\">";
75        for ( $i = 0; $i < sizeof( $lang['help_database'] ); $i++ )
76        {
77                echo"
78                                                <li>".$lang['help_database'][$i]."</li>";
79        }
80        echo"
81                                        </ul>
82                                </td>
83                        </tr>
84                        <tr>
85                                <td>&nbsp;</td>
86                        </tr>
87                        <tr>
88                                <th>".$lang['help_remote_title']."</th>
89                        </tr>
90                        <tr>
91                                <td>&nbsp;</td>
92                        </tr>
93                        <tr>
94                                <td>
95                                        <ul style=\"margin-right:10px;\">";
96        for ( $i = 0; $i < sizeof( $lang['help_remote'] ); $i++ )
97        {
98                echo"
99                                                <li>".$lang['help_remote'][$i]."</li>";
100        }
101        echo"
102                                        </ul>
103                                </td>
104                        </tr>
105                        <tr>
106                                <td>&nbsp;</td>
107                        </tr>
108                        <tr>
109                                <th>".$lang['help_upload_title']."</th>
110                        </tr>
111                        <tr>
112                                <td>&nbsp;</td>
113                        </tr>
114                        <tr>
115                                <td>
116                                        <ul style=\"margin-right:10px;\">";
117        for ( $i = 0; $i < sizeof( $lang['help_upload'] ); $i++ )
118        {
119                echo"
120                                                <li>".$lang['help_upload'][$i]."</li>";
121        }
122        echo"
123                                        </ul>
124                                </td>
125                        </tr>
126                        <tr>
127                                <td>&nbsp;</td>
128                        </tr>
129                        <tr>
130                                <th>".$lang['help_infos_title']."</th>
131                        </tr>
132                        <tr>
133                                <td>&nbsp;</td>
134                        </tr>
135                        <tr>
136                                <td>
137                                        <ul style=\"margin-right:10px;\">";
138        for ( $i = 0; $i < sizeof( $lang['help_infos'] ); $i++ )
139        {
140                echo"
141                                                <li>".$lang['help_infos'][$i]."</li>";
142        }
143        echo"
144                                        </ul>
145                                </td>
146                        </tr>
147                        <tr>
148                                <td>&nbsp;</td>
149                        </tr>
150                </table>";
151?>
Note: See TracBrowser for help on using the repository browser.