Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
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. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
acp_posting_buttons.html
01 <script type="text/javascript">
02 // <![CDATA[
03
04 // Define the bbCode tags
05 var bbcode = new Array();
06 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 -->);
07
08 // Helpline messages
09 var help_line = {
10 b: '{LA_BBCODE_B_HELP}',
11 i: '{LA_BBCODE_I_HELP}',
12 u: '{LA_BBCODE_U_HELP}',
13 q: '{LA_BBCODE_Q_HELP}',
14 c: '{LA_BBCODE_C_HELP}',
15 l: '{LA_BBCODE_L_HELP}',
16 o: '{LA_BBCODE_O_HELP}',
17 p: '{LA_BBCODE_P_HELP}',
18 w: '{LA_BBCODE_W_HELP}',
19 a: '{LA_BBCODE_A_HELP}',
20 s: '{LA_BBCODE_S_HELP}',
21 f: '{LA_BBCODE_F_HELP}',
22 y: '{LA_BBCODE_Y_HELP}',
23 d: '{LA_BBCODE_D_HELP}'
24 <!-- BEGIN custom_tags -->
25 ,cb_{custom_tags.BBCODE_ID}{L_COLON} '{custom_tags.A_BBCODE_HELPLINE}'
26 <!-- END custom_tags -->
27 }
28
29 // ]]>
30 </script>
31
32 <!-- INCLUDEJS {T_ASSETS_PATH}/javascript/editor.js -->
33
34 <!-- EVENT acp_posting_buttons_before -->
35 <div id="format-buttons">
36 <input type="button" class="button2" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 30px" onclick="bbstyle(0)" title="{L_BBCODE_B_HELP}" />
37 <input type="button" class="button2" accesskey="i" name="addbbcode2" value=" i " style="font-style:italic; width: 30px" onclick="bbstyle(2)" title="{L_BBCODE_I_HELP}" />
38 <input type="button" class="button2" accesskey="u" name="addbbcode4" value=" u " style="text-decoration: underline; width: 30px" onclick="bbstyle(4)" title="{L_BBCODE_U_HELP}" />
39 <!-- IF S_BBCODE_QUOTE -->
40 <input type="button" class="button2" accesskey="q" name="addbbcode6" value="Quote" style="width: 50px" onclick="bbstyle(6)" title="{L_BBCODE_Q_HELP}" />
41 <!-- ENDIF -->
42 <input type="button" class="button2" accesskey="c" name="addbbcode8" value="Code" style="width: 40px" onclick="bbstyle(8)" title="{L_BBCODE_C_HELP}" />
43 <input type="button" class="button2" accesskey="l" name="addbbcode10" value="List" style="width: 40px" onclick="bbstyle(10)" title="{L_BBCODE_L_HELP}" />
44 <input type="button" class="button2" accesskey="o" name="addbbcode12" value="List=" style="width: 40px" onclick="bbstyle(12)" title="{L_BBCODE_O_HELP}" />
45 <input type="button" class="button2" accesskey="y" name="addlistitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" title="{L_BBCODE_LISTITEM_HELP}" />
46 <!-- IF S_BBCODE_IMG -->
47 <input type="button" class="button2" accesskey="p" name="addbbcode14" value="Img" style="width: 40px" onclick="bbstyle(14)" title="{L_BBCODE_P_HELP}" />
48 <!-- ENDIF -->
49 <!-- IF S_LINKS_ALLOWED -->
50 <input type="button" class="button2" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onclick="bbstyle(16)" title="{L_BBCODE_W_HELP}" />
51 <!-- ENDIF -->
52 <!-- IF S_BBCODE_FLASH -->
53 <input type="button" class="button2" accesskey="d" name="addbbcode18" value="Flash" onclick="bbstyle(18)" title="{L_BBCODE_D_HELP}" />
54 <!-- ENDIF -->
55 <select name="addbbcode20" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 2;" title="{L_BBCODE_F_HELP}">
56 <option value="50">{L_FONT_TINY}</option>
57 <option value="85">{L_FONT_SMALL}</option>
58 <option value="100" selected="selected">{L_FONT_NORMAL}</option>
59 <!-- IF not MAX_FONT_SIZE or MAX_FONT_SIZE >= 150 -->
60 <option value="150">{L_FONT_LARGE}</option>
61 <!-- IF not MAX_FONT_SIZE or MAX_FONT_SIZE >= 200 -->
62 <option value="200">{L_FONT_HUGE}</option>
63 <!-- ENDIF -->
64 <!-- ENDIF -->
65 </select>
66 <!-- EVENT acp_posting_buttons_custom_tags_before -->
67 <!-- BEGIN custom_tags -->
68 <input type="button" class="button2" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})" title="{custom_tags.BBCODE_HELPLINE}" />
69 <!-- END custom_tags -->
70 </div>
71 <!-- EVENT acp_posting_buttons_after -->
72