Posted by
Steff on 31 January 2009, 13:15
#6
/includes/bbcodes/table_bbcode_include.php :
[geshi=php]
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: table_bbcode_include.php
| Author: Jeepers1993
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or >\1', $text);
$text = preg_replace('#\[url=.*?]row\[/url]\[/row\]#si', '
\1
', $text);
$text = preg_replace('#\[url=.*?]cell\[/url]\[/cell\]#si', '
\1 | ', $text);
?>[/geshi]
/includes/bbcodes/table_bbcode_include_var.php :
[geshi=php]
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: table_bbcode_include_var.php
| Author: Jeepers1993
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or > "Table",
"value" => "table",
"bbcode_start" => "
",
"usage" => "
"
);
$__BBCODE__[] =
array(
"description" => "Row",
"value" => "row",
"bbcode_start" => "[row]",
"bbcode_end" => "[/row]",
"usage" => "[row]Content[/row]"
);
$__BBCODE__[] =
array(
"description" => "Cell",
"value" => "cell",
"bbcode_start" => "[cell]",
"bbcode_end" => "[/cell]",
"usage" => "[cell]Content[/cell]"
);
?>[/geshi]
De "Table" BBcode activeren in system/bbcodes/ en je kan het gebruiken :-)
Opmerking: Zorg wel dat je alle tags CORRECT afsluit, en gebruik bijvoorbeeld "Cell" IN "Row" en "Row" IN "Table" anders gaat je layout er vreselijk uitzien mocht je iets verkeerd hebben staan.
Edited by
Steff on 31 January 2009, 13:20