Verzeichnisstruktur phpBB-3.1.0


Veröffentlicht
27.10.2014

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

forumlist_body.html

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 4.50 KiB


001   
002  <!-- BEGIN forumrow -->
003      <!-- IF (forumrow.S_IS_CAT and not forumrow.S_FIRST_ROW) or forumrow.S_NO_CAT  -->
004              </ul>
005   
006              </div>
007          </div>
008      <!-- ENDIF -->
009   
010      <!-- EVENT forumlist_body_category_header_before -->
011      <!-- IF forumrow.S_IS_CAT or forumrow.S_FIRST_ROW  or forumrow.S_NO_CAT  -->
012          <div class="forabg">
013              <div class="inner">
014              <ul class="topiclist">
015                  <li class="header">
016                      <dl class="icon">
017                          <dt><div class="list-inner"><!-- IF forumrow.S_IS_CAT --><a href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a><!-- ELSE -->{L_FORUM}<!-- ENDIF --></div></dt>
018                          <dd class="topics">{L_TOPICS}</dd>
019                          <dd class="posts">{L_POSTS}</dd>
020                          <dd class="lastpost"><span>{L_LAST_POST}</span></dd>
021                      </dl>
022                  </li>
023              </ul>
024              <ul class="topiclist forums">
025      <!-- ENDIF -->
026      <!-- EVENT forumlist_body_category_header_after -->
027   
028      <!-- IF not forumrow.S_IS_CAT -->
029          <!-- EVENT forumlist_body_forum_row_before -->
030          <li class="row">
031              <!-- EVENT forumlist_body_forum_row_prepend -->
032              <dl class="icon {forumrow.FORUM_IMG_STYLE}">
033                  <dt title="{forumrow.FORUM_FOLDER_IMG_ALT}">
034                      <!-- IF forumrow.S_UNREAD_FORUM --><a href="{forumrow.U_VIEWFORUM}" class="icon-link"></a><!-- ENDIF -->
035                      <div class="list-inner">
036                          <!-- IF S_ENABLE_FEEDS and forumrow.S_FEED_ENABLED --><!-- <a class="feed-icon-forum" title="{L_FEED} - {forumrow.FORUM_NAME}" href="{U_FEED}?f={forumrow.FORUM_ID}"><img src="{T_THEME_PATH}/images/feed.gif" alt="{L_FEED} - {forumrow.FORUM_NAME}" /></a> --><!-- ENDIF -->
037   
038                          <!-- IF forumrow.FORUM_IMAGE --><span class="forum-image">{forumrow.FORUM_IMAGE}</span><!-- ENDIF -->
039                          <a href="{forumrow.U_VIEWFORUM}" class="forumtitle">{forumrow.FORUM_NAME}</a>
040                          <!-- IF forumrow.FORUM_DESC --><br />{forumrow.FORUM_DESC}<!-- ENDIF -->
041                          <!-- IF forumrow.MODERATORS -->
042                              <br /><strong>{forumrow.L_MODERATOR_STR}{L_COLON}</strong> {forumrow.MODERATORS}
043                          <!-- ENDIF -->
044                          <!-- IF .forumrow.subforum and forumrow.S_LIST_SUBFORUMS -->
045                              <!-- EVENT forumlist_body_subforums_before -->
046                              <br /><strong>{forumrow.L_SUBFORUM_STR}{L_COLON}</strong>
047                              <!-- BEGIN subforum -->
048                                  <a href="{forumrow.subforum.U_SUBFORUM}" class="subforum<!-- IF forumrow.subforum.S_UNREAD --> unread<!-- ELSE --> read<!-- ENDIF -->" title="<!-- IF forumrow.subforum.UNREAD -->{L_UNREAD_POSTS}<!-- ELSE -->{L_NO_UNREAD_POSTS}<!-- ENDIF -->">{forumrow.subforum.SUBFORUM_NAME}</a><!-- IF not forumrow.subforum.S_LAST_ROW -->{L_COMMA_SEPARATOR}<!-- ENDIF -->
049                              <!-- END subforum -->
050                              <!-- EVENT forumlist_body_subforums_after -->
051                          <!-- ENDIF -->
052   
053                          <!-- IF not S_IS_BOT -->
054                          <div class="responsive-show" style="display: none;">
055                              <!-- IF forumrow.CLICKS -->
056                                  {L_REDIRECTS}{L_COLON} <strong>{forumrow.CLICKS}</strong>
057                              <!-- ELSEIF not forumrow.S_IS_LINK and forumrow.TOPICS -->
058                                  {L_TOPICS}{L_COLON} <strong>{forumrow.TOPICS}</strong>
059                              <!-- ENDIF -->
060                          </div>
061                          <!-- ENDIF -->
062                      </div>
063                  </dt>
064                  <!-- IF forumrow.CLICKS -->
065                      <dd class="redirect"><span>{L_REDIRECTS}{L_COLON} {forumrow.CLICKS}</span></dd>
066                  <!-- ELSEIF not forumrow.S_IS_LINK -->
067                      <dd class="topics">{forumrow.TOPICS} <dfn>{L_TOPICS}</dfn></dd>
068                      <dd class="posts">{forumrow.POSTS} <dfn>{L_POSTS}</dfn></dd>
069                      <dd class="lastpost"><span>
070                          <!-- IF forumrow.U_UNAPPROVED_TOPICS -->
071                              <a href="{forumrow.U_UNAPPROVED_TOPICS}">{UNAPPROVED_IMG}</a>
072                          <!-- ELSEIF forumrow.U_UNAPPROVED_POSTS -->
073                              <a href="{forumrow.U_UNAPPROVED_POSTS}">{UNAPPROVED_POST_IMG}</a>
074                          <!-- ENDIF -->
075                          <!-- IF forumrow.LAST_POST_TIME --><dfn>{L_LAST_POST}</dfn>
076                          <!-- IF forumrow.S_DISPLAY_SUBJECT -->
077                              <!-- EVENT forumlist_body_last_post_title_prepend -->
078                              <a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}" class="lastsubject">{forumrow.LAST_POST_SUBJECT_TRUNCATED}</a> <br />
079                          <!-- ENDIF --> 
080                          {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL}
081                          <!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}">{LAST_POST_IMG}</a> <!-- ENDIF --><br />{forumrow.LAST_POST_TIME}<!-- ELSE -->{L_NO_POSTS}<br />&nbsp;<!-- ENDIF --></span>
082                      </dd>
083                  <!-- ENDIF -->
084              </dl>
085              <!-- EVENT forumlist_body_forum_row_append -->
086          </li>
087          <!-- EVENT forumlist_body_forum_row_after -->
088      <!-- ENDIF -->
089   
090      <!-- IF forumrow.S_LAST_ROW -->
091              </ul>
092   
093              </div>
094          </div>
095      <!-- EVENT forumlist_body_last_row_after -->
096      <!-- ENDIF -->
097   
098  <!-- BEGINELSE -->
099      <div class="panel">
100          <div class="inner">
101          <strong>{L_NO_FORUMS}</strong>
102          </div>
103      </div>
104  <!-- END forumrow -->
105