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

acp_users_signature.html

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


001  <script type="text/javascript">
002  // <![CDATA[
003   
004      var form_name = 'user_signature';
005      var text_name = 'signature';
006   
007      // Define the bbCode tags
008      var bbcode = new Array();
009      var bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','[/code]','[list]','[/list]','[list=]','[/list]','[img]','[/img]','[url]','[/url]','[flash=]', '[/flash]','[size=]','[/size]'<!-- BEGIN custom_tags -->, {custom_tags.BBCODE_NAME}<!-- END custom_tags -->);
010      var imageTag = false;
011   
012      // Helpline messages
013      var help_line = {
014          b: '{LA_BBCODE_B_HELP}',
015          i: '{LA_BBCODE_I_HELP}',
016          u: '{LA_BBCODE_U_HELP}',
017          q: '{LA_BBCODE_Q_HELP}',
018          c: '{LA_BBCODE_C_HELP}',
019          l: '{LA_BBCODE_L_HELP}',
020          o: '{LA_BBCODE_O_HELP}',
021          p: '{LA_BBCODE_P_HELP}',
022          w: '{LA_BBCODE_W_HELP}',
023          s: '{LA_BBCODE_S_HELP}',
024          f: '{LA_BBCODE_F_HELP}',
025          e: '{LA_BBCODE_E_HELP}',
026          d: '{LA_BBCODE_D_HELP}',
027          t: '{LA_BBCODE_T_HELP}',
028          tip: '{L_STYLES_TIP}'
029          <!-- BEGIN custom_tags -->
030              ,cb_{custom_tags.BBCODE_ID}: '{custom_tags.A_BBCODE_HELPLINE}'
031          <!-- END custom_tags -->
032      }
033   
034  // ]]>
035  </script>
036  <script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>
037   
038  <form id="user_signature" method="post" action="{U_ACTION}">
039   
040      <!-- IF SIGNATURE_PREVIEW -->
041          <fieldset>
042              <legend>{L_ADMIN_SIG_PREVIEW}</legend>
043              <p>{SIGNATURE_PREVIEW}</p>
044          </fieldset>
045      <!-- ENDIF -->
046   
047      <fieldset>
048          <legend>{L_SIGNATURE}</legend>
049          <p>{L_SIGNATURE_EXPLAIN}</p>
050   
051          <div id="format-buttons">
052              <input type="button" class="button2" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 30px;" onclick="bbstyle(0)" onmouseover="helpline('b')" onmouseout="helpline('tip')" />
053              <input type="button" class="button2" accesskey="i" name="addbbcode2" value=" i " style="font-style:italic; width: 30px;" onclick="bbstyle(2)" onmouseover="helpline('i')" onmouseout="helpline('tip')" />
054              <input type="button" class="button2" accesskey="u" name="addbbcode4" value=" u " style="text-decoration: underline; width: 30px;" onclick="bbstyle(4)" onmouseover="helpline('u')" onmouseout="helpline('tip')" />
055              <input type="button" class="button2" accesskey="q" name="addbbcode6" value="Quote" style="width: 50px" onclick="bbstyle(6)" onmouseover="helpline('q')" onmouseout="helpline('tip')" />
056              <input type="button" class="button2" accesskey="c" name="addbbcode8" value="Code" style="width: 40px" onclick="bbstyle(8)" onmouseover="helpline('c')" onmouseout="helpline('tip')" />
057              <input type="button" class="button2" accesskey="l" name="addbbcode10" value="List" style="width: 40px" onclick="bbstyle(10)" onmouseover="helpline('l')" onmouseout="helpline('tip')" />
058              <input type="button" class="button2" accesskey="o" name="addbbcode12" value="List=" style="width: 40px" onclick="bbstyle(12)" onmouseover="helpline('o')" onmouseout="helpline('tip')" />
059              <input type="button" class="button2" accesskey="t" name="addlitsitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" onmouseover="helpline('e')" onmouseout="helpline('tip')" />
060              <!-- IF S_BBCODE_IMG -->
061                  <input type="button" class="button2" accesskey="p" name="addbbcode14" value="Img" style="width: 40px" onclick="bbstyle(14)" onmouseover="helpline('p')" onmouseout="helpline('tip')" />
062              <!-- ENDIF -->
063              <!-- IF S_LINKS_ALLOWED -->
064                  <input type="button" class="button2" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onclick="bbstyle(16)" onmouseover="helpline('w')" onmouseout="helpline('tip')" />
065              <!-- ENDIF -->
066              <!-- IF S_BBCODE_FLASH -->
067                  <input type="button" class="button2" accesskey="d" name="addbbcode18" value="Flash" onclick="bbstyle(18)" onmouseover="helpline('d')" onmouseout="helpline('tip')" />
068              <!-- ENDIF -->
069   
070              {L_FONT_SIZE}: <select name="addbbcode20" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 2;" title="{L_FONT_SIZE}" onmouseover="helpline('f')" onmouseout="helpline('tip')">
071                  <option value="50">{L_FONT_TINY}</option>
072                  <option value="85">{L_FONT_SMALL}</option>
073                  <option value="100" selected="selected">{L_FONT_NORMAL}</option>
074                  <option value="150">{L_FONT_LARGE}</option>
075                  <option value="200">{L_FONT_HUGE}</option>
076              </select>
077          <!-- IF .custom_tags -->
078              <br /><br />
079              <!-- BEGIN custom_tags -->
080                  <input type="button" class="button2" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})"<!-- IF custom_tags.BBCODE_HELPLINE !== '' --> onmouseover="helpline('cb_{custom_tags.BBCODE_ID}')" onmouseout="helpline('tip')"<!-- ENDIF --> />
081              <!-- END custom_tags -->
082          <!-- ENDIF -->
083   
084          </div>
085   
086          <p><input type="text" class="text full" style="border: 0; background: none;" name="helpbox" value="{L_STYLES_TIP}" /></p>
087   
088          <dl>
089              <dt style="width: 90px;">
090                  <script type="text/javascript">
091                  // <![CDATA[
092                      colorPalette('v', 12, 10);
093                  // ]]>
094                  </script>
095              </dt>
096              <dd style="margin-left: 90px;"><textarea name="signature" rows="10" cols="60" style="width: 95%;" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">{SIGNATURE}</textarea></dd>
097              <dd style="margin-left: 90px; margin-top: 5px;">
098              <!-- IF S_BBCODE_ALLOWED -->
099                  <label><input type="checkbox" class="radio" name="disable_bbcode"{S_BBCODE_CHECKED} /> {L_DISABLE_BBCODE}</label>
100              <!-- ENDIF -->
101              <!-- IF S_SMILIES_ALLOWED -->
102                  <label><input type="checkbox" class="radio" name="disable_smilies"{S_SMILIES_CHECKED} /> {L_DISABLE_SMILIES}</label>
103              <!-- ENDIF -->
104              <!-- IF S_LINKS_ALLOWED -->
105                  <label><input type="checkbox" class="radio" name="disable_magic_url"{S_MAGIC_URL_CHECKED} /> {L_DISABLE_MAGIC_URL}</label>
106              <!-- ENDIF -->
107              </dd>
108              <dd style="margin-left: 90px; margin-top: 10px;"><strong>{L_OPTIONS}: </strong>{BBCODE_STATUS} :: {IMG_STATUS} :: {FLASH_STATUS} :: {URL_STATUS} :: {SMILIES_STATUS}</dd>
109          </dl>
110      </fieldset>
111   
112      <fieldset class="submit-buttons">
113          <input class="button1" type="submit" name="update" value="{L_SUBMIT}" />&nbsp;
114          <input class="button2" type="submit" name="preview" value="{L_PREVIEW}" />
115          {S_FORM_TOKEN}
116      </fieldset>
117  </form>