darwinel | d8bef8a | 2014-02-11 20:13:22 +0100 | [diff] [blame^] | 1 | <?php |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 6 | * |
| 7 | * NOTICE OF LICENSE |
Andrey Andreev | e734b38 | 2012-03-26 13:42:36 +0300 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Academic Free License version 3.0 |
Andrey Andreev | e734b38 | 2012-03-26 13:42:36 +0300 | [diff] [blame] | 10 | * |
Derek Jones | 61df906 | 2011-10-21 09:55:40 -0500 | [diff] [blame] | 11 | * This source file is subject to the Academic Free License (AFL 3.0) that is |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 12 | * 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 |
darwinel | 871754a | 2014-02-11 17:34:57 +0100 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @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 | */ |
darwinel | d8bef8a | 2014-02-11 20:13:22 +0100 | [diff] [blame^] | 27 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 28 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 29 | /* |
| 30 | | ------------------------------------------------------------------- |
| 31 | | SMILEYS |
| 32 | | ------------------------------------------------------------------- |
| 33 | | This file contains an array of smileys for use with the emoticon helper. |
vlakoff | c941d85 | 2013-08-06 14:44:40 +0200 | [diff] [blame] | 34 | | Individual images can be used to replace multiple smileys. For example: |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 35 | | :-) and :) use the same image replacement. |
| 36 | | |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 37 | | Please see user guide for more info: |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 38 | | http://codeigniter.com/user_guide/helpers/smiley_helper.html |
| 39 | | |
| 40 | */ |
| 41 | |
| 42 | $smileys = array( |
| 43 | |
| 44 | // smiley image name width height alt |
| 45 | |
| 46 | ':-)' => array('grin.gif', '19', '19', 'grin'), |
| 47 | ':lol:' => array('lol.gif', '19', '19', 'LOL'), |
| 48 | ':cheese:' => array('cheese.gif', '19', '19', 'cheese'), |
| 49 | ':)' => array('smile.gif', '19', '19', 'smile'), |
| 50 | ';-)' => array('wink.gif', '19', '19', 'wink'), |
| 51 | ';)' => array('wink.gif', '19', '19', 'wink'), |
| 52 | ':smirk:' => array('smirk.gif', '19', '19', 'smirk'), |
| 53 | ':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'), |
| 54 | ':-S' => array('confused.gif', '19', '19', 'confused'), |
| 55 | ':wow:' => array('surprise.gif', '19', '19', 'surprised'), |
| 56 | ':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'), |
| 57 | ':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'), |
| 58 | '%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'), |
| 59 | ';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'), |
| 60 | ':P' => array('raspberry.gif', '19', '19', 'raspberry'), |
| 61 | ':blank:' => array('blank.gif', '19', '19', 'blank stare'), |
| 62 | ':long:' => array('longface.gif', '19', '19', 'long face'), |
| 63 | ':ohh:' => array('ohh.gif', '19', '19', 'ohh'), |
| 64 | ':grrr:' => array('grrr.gif', '19', '19', 'grrr'), |
| 65 | ':gulp:' => array('gulp.gif', '19', '19', 'gulp'), |
| 66 | '8-/' => array('ohoh.gif', '19', '19', 'oh oh'), |
| 67 | ':down:' => array('downer.gif', '19', '19', 'downer'), |
| 68 | ':red:' => array('embarrassed.gif', '19', '19', 'red face'), |
| 69 | ':sick:' => array('sick.gif', '19', '19', 'sick'), |
| 70 | ':shut:' => array('shuteye.gif', '19', '19', 'shut eye'), |
| 71 | ':-/' => array('hmm.gif', '19', '19', 'hmmm'), |
| 72 | '>:(' => array('mad.gif', '19', '19', 'mad'), |
| 73 | ':mad:' => array('mad.gif', '19', '19', 'mad'), |
| 74 | '>:-(' => array('angry.gif', '19', '19', 'angry'), |
| 75 | ':angry:' => array('angry.gif', '19', '19', 'angry'), |
| 76 | ':zip:' => array('zip.gif', '19', '19', 'zipper'), |
| 77 | ':kiss:' => array('kiss.gif', '19', '19', 'kiss'), |
| 78 | ':ahhh:' => array('shock.gif', '19', '19', 'shock'), |
| 79 | ':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'), |
| 80 | ':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'), |
| 81 | ':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'), |
| 82 | ':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'), |
| 83 | ':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'), |
| 84 | ':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'), |
| 85 | ':vampire:' => array('vampire.gif', '19', '19', 'vampire'), |
| 86 | ':snake:' => array('snake.gif', '19', '19', 'snake'), |
Andrey Andreev | 90c54b6 | 2014-02-11 12:07:56 +0200 | [diff] [blame] | 87 | ':exclaim:' => array('exclaim.gif', '19', '19', 'exclaim'), |
vlakoff | c941d85 | 2013-08-06 14:44:40 +0200 | [diff] [blame] | 88 | ':question:' => array('question.gif', '19', '19', 'question') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 89 | |
MarcosCoelho | cb212c6 | 2011-08-31 14:59:19 -0300 | [diff] [blame] | 90 | ); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 91 | |
| 92 | /* End of file smileys.php */ |
Derek Jones | f0b3994 | 2010-03-25 10:08:20 -0500 | [diff] [blame] | 93 | /* Location: ./application/config/smileys.php */ |