Other emoticons in serendipity_event_emoticate

Creating and modifying plugins.
Post Reply
Oldenzaaltjuh
Posts: 1
Joined: Sun Feb 25, 2007 7:44 pm

Other emoticons in serendipity_event_emoticate

Post by Oldenzaaltjuh »

Hello,

First of all I want to say my English is very bad. I hope you understand me ;)

I try to change the emoticons in the plugin: serendipity_event_emoticate

I must change it here i think but it don't work. For example the first one must be:

8- ) (no spaces) becomes Image

Code: Select all

if (!isset($this->smilies)) {
            $ext = $this->get_config('extension', 'png');
            $this->smilies = array(
                "\:\'("    => serendipity_getTemplateFile('img/emoticons/cry.'.$ext),

                '\:\-?\)'  => serendipity_getTemplateFile('img/emoticons/smile.'.$ext),

                '\:\|'     => serendipity_getTemplateFile('img/emoticons/normal.'.$ext),

                '\:\-?O'  => serendipity_getTemplateFile('img/emoticons/eek.'.$ext),

                '\:\-?\('  => serendipity_getTemplateFile('img/emoticons/sad.'.$ext),

                '8\-?\)'  => serendipity_getTemplateFile('img/emoticons/cool.'.$ext),

                '\:\-?D'  => serendipity_getTemplateFile('img/emoticons/laugh.'.$ext),

                '\:\-?P'  => serendipity_getTemplateFile('img/emoticons/tongue.'.$ext),

                ';\-?\)'  => serendipity_getTemplateFile('img/emoticons/wink.'.$ext),
            );
        }
I can't find the map where the emoticons are. The 'img/emoticons'

I hope you can help me :)
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: Other emoticons in serendipity_event_emoticate

Post by garvinhicking »

Hi!

Please check out the documentation here:

http://www.s9y.org/44.html#A15

So you would add a rule like

Code: Select all

"8\-\)" => 'http://www.oldenzaaltjuh.nl/images/smilie/cool.gif'
HTH,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Post Reply