]> git.mxchange.org Git - friendica.git/blob - include/bbcode.php
Manage user registrations in REGISTER_APPROVE mode.
[friendica.git] / include / bbcode.php
1 <?php
2
3         // BBcode 2 HTML was written by WAY2WEB.net
4         // extended to work with Mistpark/Friendika - Mike Macgirvin
5
6 function bbcode($Text) {
7
8         // Replace any html brackets with HTML Entities to prevent executing HTML or script
9         // Don't use strip_tags here because it breaks [url] search by replacing & with amp
10
11         $Text = str_replace("<", "&lt;", $Text);
12         $Text = str_replace(">", "&gt;", $Text);
13
14         // Convert new line chars to html <br /> tags
15         $Text = nl2br($Text);
16
17         // Set up the parameters for a URL search string
18         $URLSearchString = " a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%";
19         // Set up the parameters for a MAIL search string
20         $MAILSearchString = $URLSearchString . " a-zA-Z0-9\.@";
21
22         // Perform URL Search
23
24         $Text = preg_replace("/[^\]\=](https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%]*)/", ' <a href="$1" >$1</a>', $Text);
25
26         $Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/", '<a href="$1" >$1</a>', $Text);
27         $Text = preg_replace("(\[url\=([$URLSearchString]*)\](.+?)\[/url\])", '<a href="$1" >$2</a>', $Text);
28         //$Text = preg_replace("(\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[/url\])", '<a href="$1" target="_blank">$2</a>', $Text);
29
30
31         // Perform MAIL Search
32         $Text = preg_replace("(\[mail\]([$MAILSearchString]*)\[/mail\])", '<a href="mailto:$1">$1</a>', $Text);
33         $Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.+?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $Text);
34          
35         // Check for bold text
36         $Text = preg_replace("(\[b\](.+?)\[\/b])is",'<strong>$1</strong>',$Text);
37
38         // Check for Italics text
39         $Text = preg_replace("(\[i\](.+?)\[\/i\])is",'<em>$1</em>',$Text);
40
41         // Check for Underline text
42         $Text = preg_replace("(\[u\](.+?)\[\/u\])is",'<u>$1</u>',$Text);
43
44         // Check for strike-through text
45         $Text = preg_replace("(\[s\](.+?)\[\/s\])is",'<strike>$1</strike>',$Text);
46
47         // Check for over-line text
48         $Text = preg_replace("(\[o\](.+?)\[\/o\])is",'<span class="overline">$1</span>',$Text);
49
50         // Check for colored text
51         $Text = preg_replace("(\[color=(.+?)\](.+?)\[\/color\])is","<span style=\"color: $1\">$2</span>",$Text);
52
53         // Check for sized text
54         $Text = preg_replace("(\[size=(.+?)\](.+?)\[\/size\])is","<span style=\"font-size: $1px\">$2</span>",$Text);
55
56         // Check for list text
57         $Text = preg_replace("/\[list\](.+?)\[\/list\]/is", '<ul class="listbullet">$1</ul>' ,$Text);
58         $Text = preg_replace("/\[list=1\](.+?)\[\/list\]/is", '<ul class="listdecimal">$1</ul>' ,$Text);
59         $Text = preg_replace("/\[list=i\](.+?)\[\/list\]/s",'<ul class="listlowerroman">$1</ul>' ,$Text);
60         $Text = preg_replace("/\[list=I\](.+?)\[\/list\]/s", '<ul class="listupperroman">$1</ul>' ,$Text);
61         $Text = preg_replace("/\[list=a\](.+?)\[\/list\]/s", '<ul class="listloweralpha">$1</ul>' ,$Text);
62         $Text = preg_replace("/\[list=A\](.+?)\[\/list\]/s", '<ul class="listupperalpha">$1</ul>' ,$Text);
63         $Text = str_replace("[*]", "<li>", $Text);
64
65         // Check for font change text
66         $Text = preg_replace("(\[font=(.+?)\](.+?)\[\/font\])","<span style=\"font-family: $1;\">$2</span>",$Text);
67
68         // Declare the format for [code] layout
69         $CodeLayout = '<code>$1</code>';
70         // Check for [code] text
71         $Text = preg_replace("/\[code\](.+?)\[\/code\]/is","$CodeLayout", $Text);
72         // Declare the format for [quote] layout
73         $QuoteLayout = '<blockquote>$1</blockquote>';                     
74         // Check for [quote] text
75         $Text = preg_replace("/\[quote\](.+?)\[\/quote\]/is","$QuoteLayout", $Text);
76          
77         // Images
78         // [img]pathtoimage[/img]
79         $Text = preg_replace("/\[img\](.+?)\[\/img\]/", '<img src="$1">', $Text);
80
81         // html5 video and audio
82
83         $Text = preg_replace("/\[video\](.+?)\[\/video\]/", '<video src="$1" controls="controls" width="425" height="350"><a href="$1">$1</a></video>', $Text);
84
85         $Text = preg_replace("/\[audio\](.+?)\[\/audio\]/", '<audio src="$1" controls="controls"><a href="$1">$1</a></audio>', $Text);
86
87          
88         // [img=widthxheight]image source[/img]
89         $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.+?)\[\/img\]/", '<img src="$3" height="$2" width="$1">', $Text);
90
91         // Youtube extensions
92         $Text = preg_replace("/\[youtube\]http:\/\/www.youtube.com\/watch\?v\=(.+?)\[\/youtube\]/",'[youtube]$1[/youtube]',$Text); 
93         $Text = preg_replace("/\[youtube\](.+?)\[\/youtube\]/", '<object width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/$1" ><param name="movie" value="http://www.youtube.com/v/$1"></param><!--[if IE]><embed src="http://www.youtube.com/v/$1" type="application/x-shockwave-flash" width="425" height="350" /><![endif]--></object>', $Text);
94
95         call_hooks('bbcode',$Text);
96
97         return $Text;
98 }