| 1 |
<?php |
<?php |
| 2 |
// $Id: bbcode-filter.inc,v 1.64 2008/01/18 14:31:27 naudefj Exp $ |
// $Id: bbcode-filter.inc,v 1.65 2008/01/27 16:50:12 naudefj Exp $ |
| 3 |
|
|
| 4 |
function _bbcode_filter_process(&$body, $format = -1) { |
function _bbcode_filter_process(&$body, $format = -1) { |
| 5 |
|
|
| 191 |
// Links to popular sites |
// Links to popular sites |
| 192 |
'#\[google(?::\w+)?\]([\w\s-]+?)\[/google(?::\w+)?\]#si' => '<a href="http://www.google.com/search?q=\\1">\\1</a>', |
'#\[google(?::\w+)?\]([\w\s-]+?)\[/google(?::\w+)?\]#si' => '<a href="http://www.google.com/search?q=\\1">\\1</a>', |
| 193 |
'#\[wikipedia(?::\w+)?\]([\w\s-]+?)\[/wikipedia(?::\w+)?\]#si' => '<a href="http://www.wikipedia.org/wiki/\\1">\\1</a>', |
'#\[wikipedia(?::\w+)?\]([\w\s-]+?)\[/wikipedia(?::\w+)?\]#si' => '<a href="http://www.wikipedia.org/wiki/\\1">\\1</a>', |
| 194 |
'#\[youtube\]([0-9a-zA-Z]+)\[/youtube\]#si' => '<object width="425" height="366"><param name="movie" value="http://www.youtube.com/v/\\1"></param><embed src="http://www.youtube.com/v/\\1" type="application/x-shockwave-flash" width="425" height="366"></embed></object>', |
'#\[youtube\]([0-9a-zA-Z_\-]+)\[/youtube\]#si' => '<object width="425" height="366"><param name="movie" value="http://www.youtube.com/v/\\1"></param><embed src="http://www.youtube.com/v/\\1" type="application/x-shockwave-flash" width="425" height="366"></embed></object>', |
| 195 |
|
|
| 196 |
// Table tags |
// Table tags |
| 197 |
'#\[table\](.+?)\[/table\]#si' => '<table class="bb-table">\\1</table>', |
'#\[table\](.+?)\[/table\]#si' => '<table class="bb-table">\\1</table>', |