<?php
\ndefined('BASEPATH') OR exit('No direct script access allowed');
\n
\n/*
\n| -------------------------------------------------------------------
\n| SMILEYS
\n| -------------------------------------------------------------------
\n| This file contains an array of smileys for use with the emoticon helper.
\n| Individual images can be used to replace multiple smileys.  For example:
\n| :-) and :) use the same image replacement.
\n|
\n| Please see user guide for more info:
\n| https://codeigniter.com/user_guide/helpers/smiley_helper.html
\n|
\n*/
\n$smileys = array(
\n
\n//\t<b>smiley</b>\t\t\timage name\t\t\t\t\t\twidth\theight\talt
\n
\n\t':-)'\t\t\t=>\tarray('grin.gif',\t\t\t'19',\t'19',\t'grin'),
\n\t':lol:'\t\t\t=>\tarray('lol.gif',\t\t\t'19',\t'19',\t'LOL'),
\n\t':cheese:'\t\t=>\tarray('cheese.gif',\t\t\t'19',\t'19',\t'cheese'),
\n\t':)'\t\t\t=>\tarray('smile.gif',\t\t\t'19',\t'19',\t'smile'),
\n\t';-)'\t\t\t=>\tarray('wink.gif',\t\t\t'19',\t'19',\t'wink'),
\n\t';)'\t\t\t=>\tarray('wink.gif',\t\t\t'19',\t'19',\t'wink'),
\n\t':smirk:'\t\t=>\tarray('smirk.gif',\t\t\t'19',\t'19',\t'smirk'),
\n\t':roll:'\t\t=>\tarray('rolleyes.gif',\t\t'19',\t'19',\t'rolleyes'),
\n\t':-S'\t\t\t=>\tarray('confused.gif',\t\t'19',\t'19',\t'confused'),
\n\t':wow:'\t\t\t=>\tarray('surprise.gif',\t\t'19',\t'19',\t'surprised'),
\n\t':bug:'\t\t\t=>\tarray('bigsurprise.gif',\t'19',\t'19',\t'big surprise'),
\n\t':-P'\t\t\t=>\tarray('tongue_laugh.gif',\t'19',\t'19',\t'tongue laugh'),
\n\t'%-P'\t\t\t=>\tarray('tongue_rolleye.gif',\t'19',\t'19',\t'tongue rolleye'),
\n\t';-P'\t\t\t=>\tarray('tongue_wink.gif',\t'19',\t'19',\t'tongue wink'),
\n\t':P'\t\t\t=>\tarray('raspberry.gif',\t\t'19',\t'19',\t'raspberry'),
\n\t':blank:'\t\t=>\tarray('blank.gif',\t\t\t'19',\t'19',\t'blank stare'),
\n\t':long:'\t\t=>\tarray('longface.gif',\t\t'19',\t'19',\t'long face'),
\n\t':ohh:'\t\t\t=>\tarray('ohh.gif',\t\t\t'19',\t'19',\t'ohh'),
\n\t':grrr:'\t\t=>\tarray('grrr.gif',\t\t\t'19',\t'19',\t'grrr'),
\n\t':gulp:'\t\t=>\tarray('gulp.gif',\t\t\t'19',\t'19',\t'gulp'),
\n\t'8-/'\t\t\t=>\tarray('ohoh.gif',\t\t\t'19',\t'19',\t'oh oh'),
\n\t':down:'\t\t=>\tarray('downer.gif',\t\t\t'19',\t'19',\t'downer'),
\n\t':red:'\t\t\t=>\tarray('embarrassed.gif',\t'19',\t'19',\t'red face'),
\n\t':sick:'\t\t=>\tarray('sick.gif',\t\t\t'19',\t'19',\t'sick'),
\n\t':shut:'\t\t=>\tarray('shuteye.gif',\t\t'19',\t'19',\t'shut eye'),
\n\t':-/'\t\t\t=>\tarray('hmm.gif',\t\t\t'19',\t'19',\t'hmmm'),
\n\t'>:('\t\t\t=>\tarray('mad.gif',\t\t\t'19',\t'19',\t'mad'),
\n\t':mad:'\t\t\t=>\tarray('mad.gif',\t\t\t'19',\t'19',\t'mad'),
\n\t'>:-('\t\t\t=>\tarray('angry.gif',\t\t\t'19',\t'19',\t'angry'),
\n\t':angry:'\t\t=>\tarray('angry.gif',\t\t\t'19',\t'19',\t'angry'),
\n\t':zip:'\t\t\t=>\tarray('zip.gif',\t\t\t'19',\t'19',\t'zipper'),
\n\t':kiss:'\t\t=>\tarray('kiss.gif',\t\t\t'19',\t'19',\t'kiss'),
\n\t':ahhh:'\t\t=>\tarray('shock.gif',\t\t\t'19',\t'19',\t'shock'),
\n\t':coolsmile:'\t=>\tarray('shade_smile.gif',\t'19',\t'19',\t'cool smile'),
\n\t':coolsmirk:'\t=>\tarray('shade_smirk.gif',\t'19',\t'19',\t'cool smirk'),
\n\t':coolgrin:'\t=>\tarray('shade_grin.gif',\t\t'19',\t'19',\t'cool grin'),
\n\t':coolhmm:'\t\t=>\tarray('shade_hmm.gif',\t\t'19',\t'19',\t'cool hmm'),
\n\t':coolmad:'\t\t=>\tarray('shade_mad.gif',\t\t'19',\t'19',\t'cool mad'),
\n\t':coolcheese:'\t=>\tarray('shade_cheese.gif',\t'19',\t'19',\t'cool cheese'),
\n\t':vampire:'\t\t=>\tarray('vampire.gif',\t\t'19',\t'19',\t'vampire'),
\n\t':snake:'\t\t=>\tarray('snake.gif',\t\t\t'19',\t'19',\t'snake'),
\n\t':exclaim:'\t\t=>\tarray('exclaim.gif',\t\t'19',\t'19',\t'exclaim'),
\n\t':question:'\t=>\tarray('question.gif',\t\t'19',\t'19',\t'question')
\n
\n);
\n