Verzeichnisstruktur phpBB-3.0.0


Veröffentlicht
12.12.2007

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

simple_header.html

Zuletzt modifiziert: 09.10.2024, 12:51 - Dateigröße: 2.13 KiB


001  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
002  <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
003  <head>
004   
005  <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" />
006  <meta http-equiv="Content-Style-Type" content="text/css" />
007  <meta http-equiv="Content-Language" content="{S_USER_LANG}" />
008  <meta http-equiv="imagetoolbar" content="no" />
009  <!-- IF META -->{META}<!-- ENDIF -->
010  <title>{PAGE_TITLE}</title>
011   
012  <link href="style/admin.css" rel="stylesheet" type="text/css" media="screen" />
013   
014  <script type="text/javascript">
015  // <![CDATA[
016  var jump_page = '{LA_JUMP_PAGE}:';
017  var on_page = '{ON_PAGE}';
018  var per_page = '{PER_PAGE}';
019  var base_url = '{A_BASE_URL}';
020   
021  /**
022  * Window popup
023  */
024  function popup(url, width, height, name)
025  {
026      if (!name)
027      {
028          name = '_popup';
029      }
030   
031      window.open(url.replace(/&amp;/g, '&'), name, 'height=' + height + ',resizable=yes,scrollbars=yes, width=' + width);
032      return false;
033  }
034   
035  /**
036  * Jump to page
037  */
038  function jumpto()
039  {
040      var page = prompt(jump_page, on_page);
041   
042      if (page !== null && !isNaN(page) && page > 0)    
043      {
044          document.location.href = base_url.replace(/&amp;/g, '&') + '&start=' + ((page - 1) * per_page);
045      }
046  }
047   
048  /**
049  * Set display of page element
050  * s[-1,0,1] = hide,toggle display,show
051  */
052  function dE(n, s, type)
053  {
054      if (!type)
055      {
056          type = 'block';
057      }
058   
059      var e = document.getElementById(n);
060      if (!s)
061      {
062          s = (e.style.display == '') ? -1 : 1;
063      }
064      e.style.display = (s == 1) ? type : 'none';
065  }
066   
067  /**
068  * Mark/unmark checkboxes
069  * id = ID of parent container, name = name prefix, state = state [true/false]
070  */
071  function marklist(id, name, state)
072  {
073      var parent = document.getElementById(id);
074      if (!parent)
075      {
076          return;
077      }
078   
079      var rb = parent.getElementsByTagName('input');
080      
081      for (var r = 0; r < rb.length; r++)
082      {
083          if (rb[r].name.substr(0, name.length) == name)
084          {
085              rb[r].checked = state;
086          }
087      }
088  }
089   
090  /**
091  * Find a member
092  */
093  function find_username(url)
094  {
095      popup(url, 760, 570, '_usersearch');
096      return false;
097  }
098   
099  // ]]>
100  </script>
101  </head>
102   
103  <body class="{S_CONTENT_DIRECTION}">
104   
105  <div id="page-body" class="simple-page-body">
106