83 lines
3.1 KiB
PHP
83 lines
3.1 KiB
PHP
<?php
|
|
/****************************************************************************
|
|
./lang/de/ocstyle/smilies.inc.php
|
|
-------------------
|
|
begin : December 12 2005
|
|
|
|
For license information see doc/license.txt
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
|
|
Unicode Reminder メモ
|
|
|
|
set smiley array for replacing in logs
|
|
|
|
****************************************************************************/
|
|
$smileyimage = array(
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-smile.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-smile.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-wink.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-wink.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-laughing.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-cool.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-innocent.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-surprised.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-surprised.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-frown.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-frown.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-embarassed.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-cry.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-kiss.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-tongue-out.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-tongue-out.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-undecided.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-undecided.gif" alt="" border="0" width="18px" height="18px" />',
|
|
'<img src="resource2/tinymce/plugins/emotions/img/smiley-yell.gif" alt="" border="0" width="18px" height="18px" />'
|
|
);
|
|
|
|
|
|
$smileytext = array(
|
|
" :) ",
|
|
" :-) ",
|
|
" ;) ",
|
|
" ;-) ",
|
|
" :D ",
|
|
" 8) ",
|
|
" O:) ",
|
|
" :-o ",
|
|
" :o ",
|
|
" :( ",
|
|
" :-( ",
|
|
" ::| ",
|
|
" :,-( ",
|
|
" :-* ",
|
|
" :P ",
|
|
" :-P ",
|
|
" :-/ ",
|
|
" :/ ",
|
|
" XO "
|
|
);
|
|
|
|
$smileyshow = array(
|
|
'1',
|
|
'0',
|
|
'1',
|
|
'0',
|
|
'1',
|
|
'1',
|
|
'1',
|
|
'0',
|
|
'1',
|
|
'1',
|
|
'0',
|
|
'1',
|
|
'1',
|
|
'1',
|
|
'1',
|
|
'0',
|
|
'0',
|
|
'1',
|
|
'1'
|
|
);
|
|
?>
|