Verzeichnisstruktur phpBB-1.0.0


Veröffentlicht
15.12.2000

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

page_tail.php

Zuletzt modifiziert: 09.10.2024, 12:50 - Dateigröße: 2.31 KiB


01  <?php
02  /***************************************************************************
03                                page_tail.php  -  description
04                               -------------------    
05      begin                : Sat June 17 2000    
06      copyright            : (C) 2000 by James Atkinson
07      email                : james@totalgeek.org 
08   
09      $Id: page_tail.php,v 1.23 2000/12/09 04:20:22 thefinn Exp $
10   
11  ***************************************************************************/
12   
13  /*************************************************************************** *                                                                                          
14   *   This program is free software; you can redistribute it and/or modify       
15   *   it under the terms of the GNU General Public License as published by   
16   *   the Free Software Foundation; either version 2 of the License, or             
17   *   (at your option) any later version. * 
18   ***************************************************************************/
19  if($user_logged_in && $userdata[user_level] == 4) {
20  ?>
21       <FONT FACE="<?php echo $FontFace?>" SIZE="<? echo $FontSize3?>" COLOR="<?php echo $textcolor?>">
22       <CENTER><a href="<?php echo $url_admin?>">Administration Panel</a></CENTER><BR>
23       </FONT>
24  <?php
25  }
26  ?>
27  <FONT FACE="<?php echo $FontFace?>" SIZE="<? echo $FontSize3?>" COLOR="<?php echo $textcolor?>">
28  <CENTER>Powered by <a href="http://www.phpbb.com/" target="_blank">phpBB</a> Version: <?php echo $phpbbversion?><BR>
29  <?php
30    /* Please Note!
31     * This is a notice to anyone who is using phpBB and altering this file.
32     * PLEASE do not remove the following copyright notice. All we ask in return
33     * for the use of this software is that you leave the copyright notice on here.
34     * Credit where credit is due, alot of people have put alot of hard work
35     * into this. :)
36     * Thank you.
37     * - The phpBB Group
38     */
39  ?>
40  Copyright &copy; 2000 <a href="http://www.phpbb.com/credits.php" target="_blank">The phpBB Group</a>
41  </font><BR>
42  </CENTER>
43  <?php
44  showfooter($db);
45  $mtime = microtime();
46  $mtime = explode(" ",$mtime);
47  $mtime = $mtime[1] + $mtime[0];
48  $endtime = $mtime;
49  $totaltime = ($endtime - $starttime);
50  // Uncomment the following line to display page creation time on each of your pages.
51  //printf("<center><font size=-2>phpBB Created this page in %f seconds.</font></center>", $totaltime);
52   
53  ?>
54   
55  </BODY>
56  </HTML>
57