smileys.php

Go to the documentation of this file.
00001 <?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
00002 /*
00003 | -------------------------------------------------------------------
00004 | SMILEYS
00005 | -------------------------------------------------------------------
00006 | This file contains an array of smileys for use with the emoticon helper.
00007 | Individual images can be used to replace multiple simileys.  For example:
00008 | :-) and :) use the same image replacement.
00009 |
00010 | Please see user guide for more info: 
00011 | http://codeigniter.com/user_guide/helpers/smiley_helper.html
00012 |
00013 */
00014 
00015 $smileys = array(
00016 
00017 //      smiley                  image name                                              width   height  alt
00018 
00019         ':-)'                   =>      array('grin.gif',                       '19',   '19',   'grin'),
00020         ':lol:'                 =>      array('lol.gif',                        '19',   '19',   'LOL'),
00021         ':cheese:'              =>      array('cheese.gif',                     '19',   '19',   'cheese'),
00022         ':)'                    =>      array('smile.gif',                      '19',   '19',   'smile'),
00023         ';-)'                   =>      array('wink.gif',                       '19',   '19',   'wink'),
00024         ';)'                    =>      array('wink.gif',                       '19',   '19',   'wink'),
00025         ':smirk:'               =>      array('smirk.gif',                      '19',   '19',   'smirk'),
00026         ':roll:'                =>      array('rolleyes.gif',           '19',   '19',   'rolleyes'),
00027         ':-S'                   =>      array('confused.gif',           '19',   '19',   'confused'),
00028         ':wow:'                 =>      array('surprise.gif',           '19',   '19',   'surprised'),
00029         ':bug:'                 =>      array('bigsurprise.gif',        '19',   '19',   'big surprise'),
00030         ':-P'                   =>      array('tongue_laugh.gif',       '19',   '19',   'tongue laugh'),
00031         '%-P'                   =>      array('tongue_rolleye.gif',     '19',   '19',   'tongue rolleye'),
00032         ';-P'                   =>      array('tongue_wink.gif',        '19',   '19',   'tongue wink'),
00033         ':P'                    =>      array('raspberry.gif',          '19',   '19',   'raspberry'),
00034         ':blank:'               =>      array('blank.gif',                      '19',   '19',   'blank stare'),
00035         ':long:'                =>      array('longface.gif',           '19',   '19',   'long face'),
00036         ':ohh:'                 =>      array('ohh.gif',                        '19',   '19',   'ohh'),
00037         ':grrr:'                =>      array('grrr.gif',                       '19',   '19',   'grrr'),
00038         ':gulp:'                =>      array('gulp.gif',                       '19',   '19',   'gulp'),
00039         '8-/'                   =>      array('ohoh.gif',                       '19',   '19',   'oh oh'),
00040         ':down:'                =>      array('downer.gif',                     '19',   '19',   'downer'),
00041         ':red:'                 =>      array('embarrassed.gif',        '19',   '19',   'red face'),
00042         ':sick:'                =>      array('sick.gif',                       '19',   '19',   'sick'),
00043         ':shut:'                =>      array('shuteye.gif',            '19',   '19',   'shut eye'),
00044         ':-/'                   =>      array('hmm.gif',                        '19',   '19',   'hmmm'),
00045         '>:('                   =>      array('mad.gif',                        '19',   '19',   'mad'),
00046         ':mad:'                 =>      array('mad.gif',                        '19',   '19',   'mad'),
00047         '>:-('                  =>      array('angry.gif',                      '19',   '19',   'angry'),
00048         ':angry:'               =>      array('angry.gif',                      '19',   '19',   'angry'),
00049         ':zip:'                 =>      array('zip.gif',                        '19',   '19',   'zipper'),
00050         ':kiss:'                =>      array('kiss.gif',                       '19',   '19',   'kiss'),
00051         ':ahhh:'                =>      array('shock.gif',                      '19',   '19',   'shock'),
00052         ':coolsmile:'   =>      array('shade_smile.gif',        '19',   '19',   'cool smile'),
00053         ':coolsmirk:'   =>      array('shade_smirk.gif',        '19',   '19',   'cool smirk'),
00054         ':coolgrin:'    =>      array('shade_grin.gif',         '19',   '19',   'cool grin'),
00055         ':coolhmm:'             =>      array('shade_hmm.gif',          '19',   '19',   'cool hmm'),
00056         ':coolmad:'             =>      array('shade_mad.gif',          '19',   '19',   'cool mad'),
00057         ':coolcheese:'  =>      array('shade_cheese.gif',       '19',   '19',   'cool cheese'),
00058         ':vampire:'             =>      array('vampire.gif',            '19',   '19',   'vampire'),
00059         ':snake:'               =>      array('snake.gif',                      '19',   '19',   'snake'),
00060         ':exclaim:'             =>      array('exclaim.gif',            '19',   '19',   'excaim'),      
00061         ':question:'    =>      array('question.gif',           '19',   '19',   'question') // no comma after last item
00062         
00063                 );
00064 
00065 /* End of file smileys.php */
00066 /* Location: ./system/application/config/smileys.php */