blob: 8e3844a89d3b520c045c7497d2694c508b5bd68a [file] [log] [blame]
Derek Jones4b9c6292011-07-01 17:40:48 -05001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Jonesf4a4bd82011-10-20 12:18:42 -05002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Jonesf4a4bd82011-10-20 12:18:42 -05006 *
7 * NOTICE OF LICENSE
8 *
9 * Licensed under the Academic Free License version 3.0
10 *
Derek Jones61df9062011-10-21 09:55:40 -050011 * This source file is subject to the Academic Free License (AFL 3.0) that is
Derek Jonesf4a4bd82011-10-20 12:18:42 -050012 * bundled with this package in the files license_afl.txt / license_afl.rst.
13 * It is also available through the world wide web at this URL:
14 * http://opensource.org/licenses/AFL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
19 * @package CodeIgniter
20 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/AFL-3.0 Academic Free License (AFL 3.0)
23 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
27
Derek Allard2067d1a2008-11-13 22:59:24 +000028/*
29| -------------------------------------------------------------------
30| SMILEYS
31| -------------------------------------------------------------------
32| This file contains an array of smileys for use with the emoticon helper.
Derek Jones4b9c6292011-07-01 17:40:48 -050033| Individual images can be used to replace multiple simileys. For example:
Derek Allard2067d1a2008-11-13 22:59:24 +000034| :-) and :) use the same image replacement.
35|
Barry Mienydd671972010-10-04 16:33:58 +020036| Please see user guide for more info:
Derek Allard2067d1a2008-11-13 22:59:24 +000037| http://codeigniter.com/user_guide/helpers/smiley_helper.html
38|
39*/
40
41$smileys = array(
42
43// smiley image name width height alt
44
45 ':-)' => array('grin.gif', '19', '19', 'grin'),
46 ':lol:' => array('lol.gif', '19', '19', 'LOL'),
47 ':cheese:' => array('cheese.gif', '19', '19', 'cheese'),
48 ':)' => array('smile.gif', '19', '19', 'smile'),
49 ';-)' => array('wink.gif', '19', '19', 'wink'),
50 ';)' => array('wink.gif', '19', '19', 'wink'),
51 ':smirk:' => array('smirk.gif', '19', '19', 'smirk'),
52 ':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'),
53 ':-S' => array('confused.gif', '19', '19', 'confused'),
54 ':wow:' => array('surprise.gif', '19', '19', 'surprised'),
55 ':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'),
56 ':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'),
57 '%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'),
58 ';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'),
59 ':P' => array('raspberry.gif', '19', '19', 'raspberry'),
60 ':blank:' => array('blank.gif', '19', '19', 'blank stare'),
61 ':long:' => array('longface.gif', '19', '19', 'long face'),
62 ':ohh:' => array('ohh.gif', '19', '19', 'ohh'),
63 ':grrr:' => array('grrr.gif', '19', '19', 'grrr'),
64 ':gulp:' => array('gulp.gif', '19', '19', 'gulp'),
65 '8-/' => array('ohoh.gif', '19', '19', 'oh oh'),
66 ':down:' => array('downer.gif', '19', '19', 'downer'),
67 ':red:' => array('embarrassed.gif', '19', '19', 'red face'),
68 ':sick:' => array('sick.gif', '19', '19', 'sick'),
69 ':shut:' => array('shuteye.gif', '19', '19', 'shut eye'),
70 ':-/' => array('hmm.gif', '19', '19', 'hmmm'),
71 '>:(' => array('mad.gif', '19', '19', 'mad'),
72 ':mad:' => array('mad.gif', '19', '19', 'mad'),
73 '>:-(' => array('angry.gif', '19', '19', 'angry'),
74 ':angry:' => array('angry.gif', '19', '19', 'angry'),
75 ':zip:' => array('zip.gif', '19', '19', 'zipper'),
76 ':kiss:' => array('kiss.gif', '19', '19', 'kiss'),
77 ':ahhh:' => array('shock.gif', '19', '19', 'shock'),
78 ':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'),
79 ':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'),
80 ':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'),
81 ':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'),
82 ':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'),
83 ':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'),
84 ':vampire:' => array('vampire.gif', '19', '19', 'vampire'),
85 ':snake:' => array('snake.gif', '19', '19', 'snake'),
86 ':exclaim:' => array('exclaim.gif', '19', '19', 'excaim'),
87 ':question:' => array('question.gif', '19', '19', 'question') // no comma after last item
88
MarcosCoelhocb212c62011-08-31 14:59:19 -030089);
Derek Allard2067d1a2008-11-13 22:59:24 +000090
91/* End of file smileys.php */
Derek Jonesf0b39942010-03-25 10:08:20 -050092/* Location: ./application/config/smileys.php */