Viewing file: emoticons.php (1.2 KB) -rwxrwxr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /** * @copyright 2006-2014, Miles Johnson - http://milesj.me * @license https://github.com/milesj/decoda/blob/master/license.md * @link http://milesj.me/code/php/decoda */
/** * Mapping of emoticons to a list of smilies that represents it. * The smiley will be replaced with an image that uses the emoticon name. */ return array( 'angry' => array('>(', '>:(', '>[', '>:[', ':angry:'), 'aw' => array(':aw:'), 'cool' => array('8)', '8]', ':cool:'), 'ecstatic' => array(':D', '8D', ':ecstatic:'), 'furious' => array('>:D', '><', ':furious:'), 'gah' => array('D:', ':O', ':gah:'), 'happy' => array(':)', ':]', ':happy:'), 'heart' => array('<3', ':heart:'), 'hm' => array(':/', ':\\', ':hm:'), 'kiss' => array(':3', ':kiss:'), 'meh' => array(':|', '-.-', '<_<', '>_>', ':meh:'), 'mmf' => array(':x', ':X', ':mmf:'), 'sad' => array(':(', ':[', ';(', ';[', ':\'(', ':\'[', ';\'(', ';\'[', ':sad:'), 'tongue' => array(':P', ':p', ':tongue:'), 'what' => array(':o', ':?', ':what:'), 'wink' => array(';)', ';]', ';D', ':wink:'), );
|