summary refs log tree commit diff stats
path: root/includes/bbcode.php
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2008-12-19 23:01:55 -0500
committerStarla Insigna <hatkirby@fourisland.com>2008-12-19 23:01:55 -0500
commit8920977261fb6c0fb5ad3e9be0bc07ff35b337cf (patch)
treef3fcd75e7e5b02c0152ac1f2c075e319f22be357 /includes/bbcode.php
parent31ac283c5bae32c91629fa36adf71572597f2cd5 (diff)
downloadfourisland-8920977261fb6c0fb5ad3e9be0bc07ff35b337cf.tar.gz
fourisland-8920977261fb6c0fb5ad3e9be0bc07ff35b337cf.tar.bz2
fourisland-8920977261fb6c0fb5ad3e9be0bc07ff35b337cf.zip
Added [thumb] BBCode
The [thumb] bbcode takes the content and creates a thumbnail of it. The thumbnail fits perfectly inside the post bubble and is wrapped with a link to
the original image.
Diffstat (limited to 'includes/bbcode.php')
-rwxr-xr-xincludes/bbcode.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/bbcode.php b/includes/bbcode.php index 3cae84c..4dbb933 100755 --- a/includes/bbcode.php +++ b/includes/bbcode.php
@@ -51,6 +51,7 @@ class BBCode
51 $this->bbcodes2['bquote'] = '<P><DIV CLASS="autosize"><DIV CLASS="bubble"><DIV CLASS="bquote"><BLOCKQUOTE><DIV>{CONTENT}</DIV></BLOCKQUOTE></DIV><CITE><STRONG>{PARAM}</STRONG></CITE></DIV></DIV><DIV CLASS="cleardiv"></DIV>'; 51 $this->bbcodes2['bquote'] = '<P><DIV CLASS="autosize"><DIV CLASS="bubble"><DIV CLASS="bquote"><BLOCKQUOTE><DIV>{CONTENT}</DIV></BLOCKQUOTE></DIV><CITE><STRONG>{PARAM}</STRONG></CITE></DIV></DIV><DIV CLASS="cleardiv"></DIV>';
52 $this->bbcodes2['abbr'] = '<ABBR TITLE="{PARAM}">{CONTENT}</ABBR>'; 52 $this->bbcodes2['abbr'] = '<ABBR TITLE="{PARAM}">{CONTENT}</ABBR>';
53 $this->bbcodes['hidden'] = '<SPAN STYLE="display: none">{CONTENT}</SPAN>'; 53 $this->bbcodes['hidden'] = '<SPAN STYLE="display: none">{CONTENT}</SPAN>';
54 $this->bbcodes['thumb'] = '<A HREF="/images/{CONTENT}"><IMG SRC="http://fourisland.com/thumb.php?file=images/{CONTENT}&mode=scale&by=521&side=0" /></A>';
54 55
55 $this->init = true; 56 $this->init = true;
56 } 57 }