TablemakerDemo:
posting.php?mode=post&f=14Hier raufklicken:
AnleitungLadet euch das phpBB-Tablemaker-Set herunter:
Attachment:
tablemaker.zip
Kopiert root/tablemaker/*.*
nach tablemaker/*.*
root/styles/subsilver2/imageset/buttons/table.gif
nach styles/subsilver2/imageset/buttons/table.gif
root/styles/prosilver/imageset/buttons/table.gif
nach styles/prosilver/imageset/buttons/table.gif
root/styles/prosilver/imageset/buttons/table1.gif
nach styles/prosilver/imageset/buttons/table1.gif
root/styles/prosilver/template/tablemaker.html
nach styles/prosilver/template/tablemaker.html
root/styles/subsilver2/template/tablemaker.html
nach styles/subsilver2/template/tablemaker.html
root/language/de/mods/lang_tablemaker.php
nach language/de/mods/lang_tablemaker.php
Öffnetstyles/xxxxx/template/posting_buttons.htmlFindet (gilt für beide Styles)
Code:
var help_line = {
b: '{LA_BBCODE_B_HELP}',
Dahinter fügt ein (gilt für beide Styles)
Code:
table: '{LA_BBCODE_TABLE_HELP}',
Öffnetstyles/prosilver/template/posting_buttons.htmlFügt an beliebiger Stelle ein (prosilver)
Code:
<img src="{T_IMAGESET_PATH}/buttons/table.gif" alt=""
id="table" onclick="var kleinesfenster = window.open('tablemaker/tablemaker.php', '_blank', 'width=500,height=430, left=0,top=0, resizable=no,status=no,menubar=no, location=no,scrollbars=no,toolbar=no')"
onmouseover="table.src='{T_IMAGESET_PATH}/buttons/table1.gif'; helpline('table')"
onmouseout="table.src='{T_IMAGESET_PATH}/buttons/table.gif'; helpline('tip')" />
Öffnetstyles/subsilver2/template/posting_buttons.htmlFügt an beliebiger Stelle ein (subsilver2)
Code:
<img src="{T_IMAGESET_PATH}/buttons/table.gif" alt="" onclick="var kleinesfenster = window.open('tablemaker/tablemaker.php', '_blank', 'width=500,height=430, left=0,top=0, resizable=no,status=no,menubar=no, location=no,scrollbars=no,toolbar=no')" onmouseover="helpline('table')" onmouseout="helpline('tip')" />
Öffnet language/de/posting.phpFügt an beliebiger Stelle einCode:
'BBCODE_TABLE_HELP' => 'Zum starten des phpBB3-Tablemaker > Button anklicken',
Dann geht ihr in das ACP > Beiträge > BBCodes und legt folgende neue BBCodes an:-------------------
- BBCode-Benutzung
Code:
[table border={TEXT1} cellpadding={TEXT2} cellspacing={TEXT3} width={TEXT4} height={TEXT5}]{TEXT6}[/table]
- HTML-Ersetzung
Code:
<table border="{TEXT1}" cellpadding="{TEXT2}" cellspacing="{TEXT3}" width="{TEXT4}" style="height:{TEXT5}">{TEXT6}</table>
-------------------
- BBCode-Benutzung
Code:
[tr]{TEXT}[/tr]
- HTML-Ersetzung
Code:
<tr>{TEXT}</tr>
------------
- BBCode-Benutzung
Code:
[td align={TEXT1} valign={TEXT2} bordercolor={TEXT3} bgcolor={TEXT4}]{TEXT5}[/td]
- HTML-Ersetzung
Code:
<td align="{TEXT1}" valign="{TEXT2}" style="border-color: {TEXT3}; background-color:{TEXT4}">{TEXT5}</td>
Das wars..