[289] | 1 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
---|
| 2 | /* |
---|
| 3 | | ------------------------------------------------------------------- |
---|
| 4 | | SMILEYS |
---|
| 5 | | ------------------------------------------------------------------- |
---|
| 6 | | This file contains an array of smileys for use with the emoticon helper. |
---|
| 7 | | Individual images can be used to replace multiple simileys. For example: |
---|
| 8 | | :-) and :) use the same image replacement. |
---|
| 9 | | |
---|
| 10 | | Please see user guide for more info: |
---|
| 11 | | http://codeigniter.com/user_guide/helpers/smiley_helper.html |
---|
| 12 | | |
---|
| 13 | */ |
---|
| 14 | |
---|
| 15 | $smileys = array( |
---|
| 16 | |
---|
| 17 | // smiley image name width height alt |
---|
| 18 | |
---|
| 19 | ':-)' => array('grin.gif', '19', '19', 'grin'), |
---|
| 20 | ':lol:' => array('lol.gif', '19', '19', 'LOL'), |
---|
| 21 | ':cheese:' => array('cheese.gif', '19', '19', 'cheese'), |
---|
| 22 | ':)' => array('smile.gif', '19', '19', 'smile'), |
---|
| 23 | ';-)' => array('wink.gif', '19', '19', 'wink'), |
---|
| 24 | ';)' => array('wink.gif', '19', '19', 'wink'), |
---|
| 25 | ':smirk:' => array('smirk.gif', '19', '19', 'smirk'), |
---|
| 26 | ':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'), |
---|
| 27 | ':-S' => array('confused.gif', '19', '19', 'confused'), |
---|
| 28 | ':wow:' => array('surprise.gif', '19', '19', 'surprised'), |
---|
| 29 | ':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'), |
---|
| 30 | ':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'), |
---|
| 31 | '%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'), |
---|
| 32 | ';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'), |
---|
| 33 | ':P' => array('raspberry.gif', '19', '19', 'raspberry'), |
---|
| 34 | ':blank:' => array('blank.gif', '19', '19', 'blank stare'), |
---|
| 35 | ':long:' => array('longface.gif', '19', '19', 'long face'), |
---|
| 36 | ':ohh:' => array('ohh.gif', '19', '19', 'ohh'), |
---|
| 37 | ':grrr:' => array('grrr.gif', '19', '19', 'grrr'), |
---|
| 38 | ':gulp:' => array('gulp.gif', '19', '19', 'gulp'), |
---|
| 39 | '8-/' => array('ohoh.gif', '19', '19', 'oh oh'), |
---|
| 40 | ':down:' => array('downer.gif', '19', '19', 'downer'), |
---|
| 41 | ':red:' => array('embarrassed.gif', '19', '19', 'red face'), |
---|
| 42 | ':sick:' => array('sick.gif', '19', '19', 'sick'), |
---|
| 43 | ':shut:' => array('shuteye.gif', '19', '19', 'shut eye'), |
---|
| 44 | ':-/' => array('hmm.gif', '19', '19', 'hmmm'), |
---|
| 45 | '>:(' => array('mad.gif', '19', '19', 'mad'), |
---|
| 46 | ':mad:' => array('mad.gif', '19', '19', 'mad'), |
---|
| 47 | '>:-(' => array('angry.gif', '19', '19', 'angry'), |
---|
| 48 | ':angry:' => array('angry.gif', '19', '19', 'angry'), |
---|
| 49 | ':zip:' => array('zip.gif', '19', '19', 'zipper'), |
---|
| 50 | ':kiss:' => array('kiss.gif', '19', '19', 'kiss'), |
---|
| 51 | ':ahhh:' => array('shock.gif', '19', '19', 'shock'), |
---|
| 52 | ':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'), |
---|
| 53 | ':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'), |
---|
| 54 | ':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'), |
---|
| 55 | ':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'), |
---|
| 56 | ':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'), |
---|
| 57 | ':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'), |
---|
| 58 | ':vampire:' => array('vampire.gif', '19', '19', 'vampire'), |
---|
| 59 | ':snake:' => array('snake.gif', '19', '19', 'snake'), |
---|
| 60 | ':exclaim:' => array('exclaim.gif', '19', '19', 'excaim'), |
---|
| 61 | ':question:' => array('question.gif', '19', '19', 'question') // no comma after last item |
---|
| 62 | |
---|
| 63 | ); |
---|
| 64 | |
---|
| 65 | /* End of file smileys.php */ |
---|
| 66 | /* Location: ./application/config/smileys.php */ |
---|