Files
oc-server3/htdocs/lib2/logic/smileys.class.php
2012-08-16 21:04:13 +02:00

35 lines
3.0 KiB
PHP

<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
class smileys
{
static function getSmileysArray()
{
return array(
array(true, " :) ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-smile.gif" alt="" border="0" width="18px" height="18px" />'),
array(false, " :-) ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-smile.gif" alt="" border="0" width="18px" height="18px" />'),
array(true, " ;) ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-wink.gif" alt="" border="0" width="18px" height="18px" />'),
array(false, " ;-) ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-wink.gif" alt="" border="0" width="18px" height="18px" />'),
array(true, " :D ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-laughing.gif" alt="" border="0" width="18px" height="18px" />'),
array(true, " 8) ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-cool.gif" alt="" border="0" width="18px" height="18px" />'),
array(true, " O:) ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-innocent.gif" alt="" border="0" width="18px" height="18px" />'),
array(false, " :-o ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-surprised.gif" alt="" border="0" width="18px" height="18px" />'),
array(true, " :o ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-surprised.gif" alt="" border="0" width="18px" height="18px" />'),
array(true, " :( ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-frown.gif" alt="" border="0" width="18px" height="18px" />'),
array(false, " :-( ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-frown.gif" alt="" border="0" width="18px" height="18px" />'),
array(true, " ::| ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-embarassed.gif" alt="" border="0" width="18px" height="18px" />'),
array(true, " :,-( ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-cry.gif" alt="" border="0" width="18px" height="18px" />'),
array(true, " :-* ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-kiss.gif" alt="" border="0" width="18px" height="18px" />'),
array(true, " :P ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-tongue-out.gif" alt="" border="0" width="18px" height="18px" />'),
array(false, " :-P ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-tongue-out.gif" alt="" border="0" width="18px" height="18px" />'),
array(false, " :-/ ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-undecided.gif" alt="" border="0" width="18px" height="18px" />'),
array(true, " :/ ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-undecided.gif" alt="" border="0" width="18px" height="18px" />'),
array(true, " XO ", '<img src="resource2/tinymce/plugins/emotions/img/smiley-yell.gif" alt="" border="0" width="18px" height="18px" />')
);
}
}
?>