/halogy/application/config/smileys.php

https://bitbucket.org/haloweb/halogy-1.0/ · PHP · 66 lines · 46 code · 5 blank · 15 comment · 1 complexity · 644827086f3677d0639e30b396cf94af MD5 · raw file

  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. $smileys = array(
  15. // smiley image name width height alt
  16. ':-)' => array('grin.gif', '19', '19', 'grin'),
  17. ':lol:' => array('lol.gif', '19', '19', 'LOL'),
  18. ':cheese:' => array('cheese.gif', '19', '19', 'cheese'),
  19. ':)' => array('smile.gif', '19', '19', 'smile'),
  20. ';-)' => array('wink.gif', '19', '19', 'wink'),
  21. ';)' => array('wink.gif', '19', '19', 'wink'),
  22. ':smirk:' => array('smirk.gif', '19', '19', 'smirk'),
  23. ':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'),
  24. ':-S' => array('confused.gif', '19', '19', 'confused'),
  25. ':wow:' => array('surprise.gif', '19', '19', 'surprised'),
  26. ':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'),
  27. ':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'),
  28. '%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'),
  29. ';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'),
  30. ':P' => array('rasberry.gif', '19', '19', 'rasberry'),
  31. ':blank:' => array('blank.gif', '19', '19', 'blank stare'),
  32. ':long:' => array('longface.gif', '19', '19', 'long face'),
  33. ':ohh:' => array('ohh.gif', '19', '19', 'ohh'),
  34. ':grrr:' => array('grrr.gif', '19', '19', 'grrr'),
  35. ':gulp:' => array('gulp.gif', '19', '19', 'gulp'),
  36. '8-/' => array('ohoh.gif', '19', '19', 'oh oh'),
  37. ':down:' => array('downer.gif', '19', '19', 'downer'),
  38. ':red:' => array('embarrassed.gif', '19', '19', 'red face'),
  39. ':sick:' => array('sick.gif', '19', '19', 'sick'),
  40. ':shut:' => array('shuteye.gif', '19', '19', 'shut eye'),
  41. ':-/' => array('hmm.gif', '19', '19', 'hmmm'),
  42. '>:(' => array('mad.gif', '19', '19', 'mad'),
  43. ':mad:' => array('mad.gif', '19', '19', 'mad'),
  44. '>:-(' => array('angry.gif', '19', '19', 'angry'),
  45. ':angry:' => array('angry.gif', '19', '19', 'angry'),
  46. ':zip:' => array('zip.gif', '19', '19', 'zipper'),
  47. ':kiss:' => array('kiss.gif', '19', '19', 'kiss'),
  48. ':ahhh:' => array('shock.gif', '19', '19', 'shock'),
  49. ':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'),
  50. ':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'),
  51. ':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'),
  52. ':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'),
  53. ':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'),
  54. ':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'),
  55. ':vampire:' => array('vampire.gif', '19', '19', 'vampire'),
  56. ':snake:' => array('snake.gif', '19', '19', 'snake'),
  57. ':exclaim:' => array('exclaim.gif', '19', '19', 'excaim'),
  58. ':question:' => array('question.gif', '19', '19', 'question') // no comma after last item
  59. );
  60. /* End of file smileys.php */
  61. /* Location: ./system/application/config/smileys.php */