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

ucp_main_bookmarks.html

Zuletzt modifiziert: 09.10.2024, 12:53 - Dateigröße: 3.08 KiB


01  <!-- INCLUDE ucp_header.html -->
02   
03  <table class="tablebg" width="100%" cellspacing="1">
04  <tr>
05      <th colspan="4">{L_UCP}</th>
06  </tr>
07  <tr>
08      <td class="row1" colspan="4" align="center"><span class="genmed">{L_BOOKMARKS_EXPLAIN}</span></td>
09  </tr>
10  <!-- IF .topicrow -->
11  <tr>
12      <th colspan="4">{L_BOOKMARKS}</th>
13  </tr>
14  <!-- ENDIF -->
15   
16  <!-- IF S_NO_DISPLAY_BOOKMARKS -->
17      <tr class="row1">
18          <td colspan="4" align="center"><b class="genmed">{L_BOOKMARKS_DISABLED}</b></td>
19      </tr>
20  <!-- ELSE -->
21   
22      <!-- IF TOTAL_TOPICS -->
23          <tr>
24              <td class="row3" colspan="4">
25                  <table width="100%" cellspacing="1">
26                  <tr>
27                      <td class="nav" valign="middle" nowrap="nowrap">&nbsp;{PAGE_NUMBER}<br /></td>
28                      <td class="gensmall" nowrap="nowrap">&nbsp;[ {TOTAL_TOPICS} ]&nbsp;</td>
29                      <td class="gensmall" width="100%" align="{S_CONTENT_FLOW_END}" nowrap="nowrap"><!-- INCLUDE pagination.html --></td>
30                  </tr>
31                  </table>
32              </td>
33          </tr>
34      <!-- ENDIF -->
35   
36      <!-- BEGIN topicrow -->
37   
38          <!-- IF topicrow.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
39              <td style="padding: 4px;" width="20" align="center" valign="middle">{topicrow.TOPIC_FOLDER_IMG}</td>
40          <!-- IF topicrow.S_DELETED_TOPIC -->
41              <td class="postdetails" style="padding: 4px" width="100%" colspan="2">{L_DELETED_TOPIC}</td>
42          <!-- ELSE -->
43              <td style="padding: 4px;" width="100%" valign="top">
44                  <p class="topictitle"><!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF -->{topicrow.ATTACH_ICON_IMG} <a href="{topicrow.U_VIEW_TOPIC}">{topicrow.TOPIC_TITLE}</a></p>
45                  <!-- IF topicrow.S_GLOBAL_TOPIC --><span class="gensmall">{L_GLOBAL_ANNOUNCEMENT}</span><!-- ELSE --><span class="gensmall"><b>{L_FORUM}: </b><a href="{topicrow.U_VIEW_FORUM}">{topicrow.FORUM_NAME}</a></span><!-- ENDIF -->
46                  <!-- IF topicrow.PAGINATION -->
47                      <p class="gensmall"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {topicrow.PAGINATION} ] </p>
48                  <!-- ENDIF -->
49              </td>
50              <td style="padding: 4px;" align="{S_CONTENT_FLOW_BEGIN}" valign="top" nowrap="nowrap">
51                  <p class="topicdetails">{topicrow.LAST_POST_TIME}</p>
52                  <p class="topicdetails">{topicrow.LAST_POST_AUTHOR_FULL}
53                      <a href="{topicrow.U_LAST_POST}">{LAST_POST_IMG}</a>
54                  </p>
55              </td>
56          <!-- ENDIF -->
57              <td style="padding: 4px;"> <input type="checkbox" class="radio" name="t[{topicrow.TOPIC_ID}]" /> </td>
58          </tr>
59      <!-- BEGINELSE -->
60          <tr class="row1">
61              <td colspan="4" align="center"><b class="genmed">{L_NO_BOOKMARKS}</b></td>
62          </tr>
63      <!-- END topicrow -->
64   
65          <!-- IF .topicrow -->
66              <tr>
67                  <td class="cat" colspan="5" align="{S_CONTENT_FLOW_END}"><input class="btnlite" type="submit" name="unbookmark" value="{L_REMOVE_BOOKMARK_MARKED}" />&nbsp;</td>
68              </tr>
69          <!-- ENDIF -->
70      <!-- ENDIF -->
71  </table>
72   
73  <!-- IF not S_NO_DISPLAY_BOOKMARKS and .topicrow -->
74      <div class="gensmall" style="float: {S_CONTENT_FLOW_END}; padding-top: 2px;"><b><a href="#" onclick="marklist('ucp', 't', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('ucp', 't', false); return false;">{L_UNMARK_ALL}</a></b></div>
75  <!-- ENDIF -->
76   
77  <!-- INCLUDE ucp_footer.html -->