summary refs log tree commit diff stats
path: root/includes/parsers.php
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2008-12-17 21:00:03 -0500
committerStarla Insigna <hatkirby@fourisland.com>2008-12-17 21:00:03 -0500
commitc895d2f41b0737f8a2799d36beca087e6b642f05 (patch)
treef6243c7c270bbec4f5e0d01547b2c6048cea200f /includes/parsers.php
parente3ffdb84d705dd1a1000fa91a49cc6c58fc58e05 (diff)
downloadfourisland-c895d2f41b0737f8a2799d36beca087e6b642f05.tar.gz
fourisland-c895d2f41b0737f8a2799d36beca087e6b642f05.tar.bz2
fourisland-c895d2f41b0737f8a2799d36beca087e6b642f05.zip
Added an emoticon parsing system
I decided that, because I use the :) emoticon so often, I might as well replace it with an actual image. I've added a Smiley parsing system to
complement the BBCode parsing one.
Diffstat (limited to 'includes/parsers.php')
-rwxr-xr-xincludes/parsers.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/includes/parsers.php b/includes/parsers.php new file mode 100755 index 0000000..5e984c2 --- /dev/null +++ b/includes/parsers.php
@@ -0,0 +1,36 @@
1<?php
2/*
3 444444444
4 4::::::::4
5 4:::::::::4
6 4::::44::::4
7 4::::4 4::::4 Four Island
8 4::::4 4::::4
9 4::::4 4::::4 Written and maintained by Starla Insigna
104::::444444::::444
114::::::::::::::::4 includes/parsers.php
124444444444:::::444
13 4::::4 Please do not use, reproduce or steal the
14 4::::4 contents of this file without explicit
15 4::::4 permission from Hatkirby.
16 44::::::44
17 4::::::::4
18 4444444444
19*/
20
21if (!defined('S_INCLUDE_FILE')) {define('S_INCLUDE_FILE',1);}
22
23require('headerproc.php');
24
25include('includes/bbcode.php');
26include('includes/smilies.php');
27
28function parseText($text)
29{
30 $text = parseBBCode($text);
31 $text = parseSmilies($text);
32
33 return $text;
34}
35
36?>