darwinel | d8bef8a | 2014-02-11 20:13:22 +0100 | [diff] [blame] | 1 | <?php |
darwinel | d8bef8a | 2014-02-11 20:13:22 +0100 | [diff] [blame] | 2 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 3 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 4 | /* |
| 5 | | ------------------------------------------------------------------- |
| 6 | | SMILEYS |
| 7 | | ------------------------------------------------------------------- |
| 8 | | This file contains an array of smileys for use with the emoticon helper. |
vlakoff | c941d85 | 2013-08-06 14:44:40 +0200 | [diff] [blame] | 9 | | Individual images can be used to replace multiple smileys. For example: |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 10 | | :-) and :) use the same image replacement. |
| 11 | | |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 12 | | Please see user guide for more info: |
Andrey Andreev | bd202c9 | 2016-01-11 12:50:18 +0200 | [diff] [blame] | 13 | | https://codeigniter.com/user_guide/helpers/smiley_helper.html |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 14 | | |
| 15 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 16 | $smileys = array( |
| 17 | |
| 18 | // smiley image name width height alt |
| 19 | |
| 20 | ':-)' => array('grin.gif', '19', '19', 'grin'), |
| 21 | ':lol:' => array('lol.gif', '19', '19', 'LOL'), |
| 22 | ':cheese:' => array('cheese.gif', '19', '19', 'cheese'), |
| 23 | ':)' => array('smile.gif', '19', '19', 'smile'), |
| 24 | ';-)' => array('wink.gif', '19', '19', 'wink'), |
| 25 | ';)' => array('wink.gif', '19', '19', 'wink'), |
| 26 | ':smirk:' => array('smirk.gif', '19', '19', 'smirk'), |
| 27 | ':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'), |
| 28 | ':-S' => array('confused.gif', '19', '19', 'confused'), |
| 29 | ':wow:' => array('surprise.gif', '19', '19', 'surprised'), |
| 30 | ':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'), |
| 31 | ':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'), |
| 32 | '%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'), |
| 33 | ';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'), |
| 34 | ':P' => array('raspberry.gif', '19', '19', 'raspberry'), |
| 35 | ':blank:' => array('blank.gif', '19', '19', 'blank stare'), |
| 36 | ':long:' => array('longface.gif', '19', '19', 'long face'), |
| 37 | ':ohh:' => array('ohh.gif', '19', '19', 'ohh'), |
| 38 | ':grrr:' => array('grrr.gif', '19', '19', 'grrr'), |
| 39 | ':gulp:' => array('gulp.gif', '19', '19', 'gulp'), |
| 40 | '8-/' => array('ohoh.gif', '19', '19', 'oh oh'), |
| 41 | ':down:' => array('downer.gif', '19', '19', 'downer'), |
| 42 | ':red:' => array('embarrassed.gif', '19', '19', 'red face'), |
| 43 | ':sick:' => array('sick.gif', '19', '19', 'sick'), |
| 44 | ':shut:' => array('shuteye.gif', '19', '19', 'shut eye'), |
| 45 | ':-/' => array('hmm.gif', '19', '19', 'hmmm'), |
| 46 | '>:(' => array('mad.gif', '19', '19', 'mad'), |
| 47 | ':mad:' => array('mad.gif', '19', '19', 'mad'), |
| 48 | '>:-(' => array('angry.gif', '19', '19', 'angry'), |
| 49 | ':angry:' => array('angry.gif', '19', '19', 'angry'), |
| 50 | ':zip:' => array('zip.gif', '19', '19', 'zipper'), |
| 51 | ':kiss:' => array('kiss.gif', '19', '19', 'kiss'), |
| 52 | ':ahhh:' => array('shock.gif', '19', '19', 'shock'), |
| 53 | ':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'), |
| 54 | ':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'), |
| 55 | ':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'), |
| 56 | ':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'), |
| 57 | ':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'), |
| 58 | ':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'), |
| 59 | ':vampire:' => array('vampire.gif', '19', '19', 'vampire'), |
| 60 | ':snake:' => array('snake.gif', '19', '19', 'snake'), |
Andrey Andreev | 90c54b6 | 2014-02-11 12:07:56 +0200 | [diff] [blame] | 61 | ':exclaim:' => array('exclaim.gif', '19', '19', 'exclaim'), |
vlakoff | c941d85 | 2013-08-06 14:44:40 +0200 | [diff] [blame] | 62 | ':question:' => array('question.gif', '19', '19', 'question') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 63 | |
MarcosCoelho | cb212c6 | 2011-08-31 14:59:19 -0300 | [diff] [blame] | 64 | ); |