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

acp_bots.html

Zuletzt modifiziert: 09.10.2024, 12:52 - Dateigröße: 3.40 KiB


001  <!-- INCLUDE overall_header.html -->
002   
003  <a id="maincontent"></a>
004   
005  <!-- IF S_EDIT_BOT -->
006   
007      <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a>
008   
009      <h1>{L_TITLE}</h1>
010   
011      <p>{L_BOT_EDIT_EXPLAIN}</p>
012   
013      <!-- IF S_ERROR -->
014          <div class="errorbox">
015              <h3>{L_WARNING}</h3>
016              <p>{ERROR_MSG}</p>
017          </div>
018      <!-- ENDIF -->
019   
020      <form id="acp_bots" method="post" action="{U_ACTION}">
021   
022      <fieldset>
023          <legend>{L_TITLE}</legend>
024      <dl>
025          <dt><label for="bot_name">{L_BOT_NAME}{L_COLON}</label><br /><span>{L_BOT_NAME_EXPLAIN}</span></dt>
026          <dd><input name="bot_name" type="text" id="bot_name" value="{BOT_NAME}" maxlength="255" /></dd>
027      </dl>
028      <dl>
029          <dt><label for="bot_style">{L_BOT_STYLE}{L_COLON}</label><br /><span>{L_BOT_STYLE_EXPLAIN}</span></dt>
030          <dd><select id="bot_style" name="bot_style">{S_STYLE_OPTIONS}</select></dd>
031      </dl>
032      <dl>
033          <dt><label for="bot_lang">{L_BOT_LANG}{L_COLON}</label><br /><span>{L_BOT_LANG_EXPLAIN}</span></dt>
034          <dd><select id="bot_lang" name="bot_lang">{S_LANG_OPTIONS}</select></dd>
035      </dl>
036      <dl>
037          <dt><label for="bot_active">{L_BOT_ACTIVE}{L_COLON}</label></dt>
038          <dd><select id="bot_active" name="bot_active">{S_ACTIVE_OPTIONS}</select></dd>
039      </dl>
040      <dl>
041          <dt><label for="bot_agent">{L_BOT_AGENT}{L_COLON}</label><br /><span>{L_BOT_AGENT_EXPLAIN}</span></dt>
042          <dd><input name="bot_agent" type="text" id="bot_agent" value="{BOT_AGENT}" maxlength="255" /></dd>
043      </dl>
044      <dl>
045          <dt><label for="bot_ip">{L_BOT_IP}{L_COLON}</label><br /><span>{L_BOT_IP_EXPLAIN}</span></dt>
046          <dd><input name="bot_ip" type="text" id="bot_ip" value="{BOT_IP}" maxlength="255" /></dd>
047      </dl>
048   
049      <p class="submit-buttons">
050          <input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />&nbsp;
051          <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
052          {S_FORM_TOKEN}
053      </p>
054      </fieldset>
055      </form>
056   
057  <!-- ELSE -->
058   
059      <h1>{L_BOTS}</h1>
060   
061      <p>{L_BOTS_EXPLAIN}</p>
062   
063      <form id="acp_bots" method="post" action="{U_ACTION}">
064   
065      <table class="table1 zebra-table">
066      <thead>
067      <tr>
068          <th>{L_BOT_NAME}</th>
069          <th>{L_BOT_LAST_VISIT}</th>
070          <th colspan="3">{L_OPTIONS}</th>
071          <th>{L_MARK}</th>
072      </tr>
073      </thead>
074      <tbody>
075      <!-- BEGIN bots -->
076          <tr>
077              <td style="width: 50%;">{bots.BOT_NAME}</td>
078              <td style="width: 15%; white-space: nowrap;" align="center">&nbsp;{bots.LAST_VISIT}&nbsp;</td>
079              <td style="text-align: center;">&nbsp;<a href="{bots.U_ACTIVATE_DEACTIVATE}" data-ajax="activate_deactivate">{bots.L_ACTIVATE_DEACTIVATE}</a>&nbsp;</td>
080              <td style="text-align: center;">&nbsp;<a href="{bots.U_EDIT}">{L_EDIT}</a>&nbsp;</td>
081              <td style="text-align: center;">&nbsp;<a href="{bots.U_DELETE}" data-ajax="row_delete">{L_DELETE}</a>&nbsp;</td>
082              <td style="text-align: center;"><input type="checkbox" class="radio" name="mark[]" value="{bots.BOT_ID}" /></td>
083          </tr>
084      <!-- END bots -->
085      </tbody>
086      </table>
087   
088      <fieldset class="quick" style="float: {S_CONTENT_FLOW_BEGIN};">
089          <input class="button2" name="add" type="submit" value="{L_BOT_ADD}" />
090      </fieldset>
091   
092      <fieldset class="quick" style="float: {S_CONTENT_FLOW_END};">
093          <select name="action">{S_BOT_OPTIONS}</select>
094          <input class="button2" name="submit" type="submit" value="{L_SUBMIT}" />
095          <p class="small"><a href="#" onclick="marklist('acp_bots', 'mark', true);">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('acp_bots', 'mark', false);">{L_UNMARK_ALL}</a></p>
096          {S_FORM_TOKEN}
097      </fieldset>
098      </form>
099   
100  <!-- ENDIF -->
101   
102  <!-- INCLUDE overall_footer.html -->
103