2012-05-30 12:10:57 -04:00
< ? php
/*
* Name : Smiley Pack ( Français )
* Description : Pack of smileys that make master too AOLish .
* Version : 1.01
* Author : Thomas Willingham ( based on Mike Macgirvin ' s Adult Smile template )
* All smileys from sites offering them as Public Domain
*
*
*/
2018-12-26 02:28:16 -05:00
use Friendica\Core\Hook ;
2019-12-29 21:55:10 -05:00
use Friendica\DI ;
2012-05-30 12:10:57 -04:00
function smiley_pack_fr_install () {
2018-12-26 02:28:16 -05:00
Hook :: register ( 'smilie' , 'addon/smiley_pack_fr/smiley_pack_fr.php' , 'smiley_pack_fr_smilies' );
2012-05-30 12:10:57 -04:00
}
function smiley_pack_fr_uninstall () {
2018-12-26 02:28:16 -05:00
Hook :: unregister ( 'smilie' , 'addon/smiley_pack_fr/smiley_pack_fr.php' , 'smiley_pack_fr_smilies' );
2012-05-30 12:10:57 -04:00
}
function smiley_pack_fr_smilies ( & $a , & $b ) {
#Smileys are split into various directories by the intended range of emotions. This is in case we get too big and need to modularise things. We can then cut and paste the right lines, move the right directory, and just change the name of the addon to happy_smilies or whatever.
#Be careful with invocation strings. If you have a smiley called foo, and another called foobar, typing :foobar will call foo. Avoid this with clever naming, using ~ instead of :
#when all else fails.
#Animal smileys.
$b [ 'texts' ][] = ':fleurslapin' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/bunnyflowers.gif' . '" alt="' . ':fleurslapin' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':poussin' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/chick.gif' . '" alt="' . ':poussin' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':bourdon' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/bee.gif' . '" alt="' . ':bourdon' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':coccinelle' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/ladybird.gif' . '" alt="' . ':coccinelle' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':araignée' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/bigspider.gif' . '" alt="' . ':araignée' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':chat' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/cat.gif' . '" alt="' . ':chat' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':lapin' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/bunny.gif' . '" alt="' . ':lapin' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':poussin' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/chick.gif' . '" alt="' . ':poussin' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':vache' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/cow.gif' . '" alt="' . ':vache' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':crabe' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/crab.gif' . '" alt="' . ':crabe' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':dauphin' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/dolphin.gif' . '" alt="' . ':dauphin' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':libellule' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/dragonfly.gif' . '" alt="' . ':libellule' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':grenouille' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/frog.gif' . '" alt="' . ':grenouille' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':singe' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/monkey.gif' . '" alt="' . ':singe' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':cheval' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/horse.gif' . '" alt="' . ':cheval' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':perroquet' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/parrot.gif' . '" alt="' . ':perroquet' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':escargot' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/snail.gif' . '" alt="' . ':escargot' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':mouton' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/sheep.gif' . '" alt="' . ':mouton' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':chien' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/dog.gif' . '" alt="' . ':chien' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':éléphant' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/elephant.gif' . '" alt="' . ':éléphant' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':poisson' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/fish.gif' . '" alt="' . ':poisson' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':girafe' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/giraffe.gif' . '" alt="' . ':girafe' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':cochon' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/animals/pig.gif' . '" alt="' . ':cochon' . '" />' ;
2012-05-30 12:10:57 -04:00
#Baby Smileys
$b [ 'texts' ][] = ':bébé' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/babies/baby.gif' . '" alt="' . ':bébé' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':litbébé' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/babies/babycot.gif' . '" alt="' . ':litbébé' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':enceinte' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/babies/pregnant.gif' . '" alt="' . ':enceinte' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':cigogne' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/babies/stork.gif' . '" alt="' . ':cigogne' . '" />' ;
2012-05-30 12:10:57 -04:00
#Confused Smileys
$b [ 'texts' ][] = ':paumé' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/confused/confused.gif' . '" alt="' . ':paumé' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':hausseépaules' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/confused/shrug.gif' . '" alt="' . ':hausseépaules' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':stupide' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/confused/stupid.gif' . '" alt="' . ':stupide' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':hébété' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/confused/dazed.gif' . '" alt="' . ':hébété' . '" />' ;
2012-05-30 12:10:57 -04:00
#Cool Smileys
$b [ 'texts' ][] = ':afro' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/cool/affro.gif' . '" alt="' . ':afro' . '" />' ;
2012-05-30 12:10:57 -04:00
#Devil/Angel Smileys
$b [ 'texts' ][] = ':ange' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/devilangel/angel.gif' . '" alt="' . ':ange' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':chérubin' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/devilangel/cherub.gif' . '" alt="' . ':chérubin' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':démonange' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/devilangel/blondedevil.gif' . '" alt="' . ':démonange' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':diablechat' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/devilangel/catdevil.gif' . '" alt="' . ':diablechat' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':démoniaque' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/devilangel/devil.gif' . '" alt="' . ':démoniaque' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':bascule' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/devilangel/daseesaw.gif' . '" alt="' . ':bascule' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':possédé' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/devilangel/turnevil.gif' . '" alt="' . ':possédé' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':tombe' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/devilangel/graveside.gif' . '" alt="' . ':tombe' . '" />' ;
2012-05-30 12:10:57 -04:00
#Unpleasent smileys.
$b [ 'texts' ][] = ':toilettes' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/disgust/toilet.gif' . '" alt="' . ':toilettes' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':pèteaulit' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/disgust/fartinbed.gif' . '" alt="' . ':pèteaulit' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':pet' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/disgust/fartblush.gif' . '" alt="' . ':pet' . '" />' ;
2012-05-30 12:10:57 -04:00
#Drinks
$b [ 'texts' ][] = ':thé' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/drink/tea.gif' . '" alt="' . ':thé' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':salive' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/drool/drool.gif' . '" alt="' . ':salive' . '" />' ;
2012-05-30 12:10:57 -04:00
#Sad smileys
$b [ 'texts' ][] = ':pleure' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/sad/crying.png' . '" alt="' . ':pleure' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':prisonnier' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/sad/prisoner.gif' . '" alt="' . ':prisonnier' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':soupir' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/sad/sigh.gif' . '" alt="' . ':soupir' . '" />' ;
2012-05-30 12:10:57 -04:00
#Smoking - only one smiley in here, maybe it needs moving elsewhere?
$b [ 'texts' ][] = ':fume' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/smoking/smoking.gif' . '" alt="' . ':fume' . '" />' ;
2012-05-30 12:10:57 -04:00
#Sport smileys
$b [ 'texts' ][] = ':basket' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/sport/basketball.gif' . '" alt="' . ':basket' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':vélo' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/sport/cycling.gif' . '" alt="' . ':vélo' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':fléchettes' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/sport/darts.gif' . '" alt="' . ':fléchettes' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':escrime' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/sport/fencing.gif' . '" alt="' . ':escrime' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':jonglage' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/sport/juggling.gif' . '" alt="' . ':jonglage' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':sautàlacorde' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/sport/skipping.gif' . '" alt="' . ':sautàlacorde' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':arc' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/sport/archery.gif' . '" alt="' . ':arc' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':surf' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/sport/surfing.gif' . '" alt="' . ':surf' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':billard' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/sport/snooker.gif' . '" alt="' . ':billard' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':équitation' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/sport/horseriding.gif' . '" alt="' . ':équitation' . '" />' ;
2012-05-30 12:10:57 -04:00
#Love smileys
$b [ 'texts' ][] = ':jetaime' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/love/iloveyou.gif' . '" alt="' . ':jetaime' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':amoureux' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/love/inlove.gif' . '" alt="' . ':amoureux' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':oursamour' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/love/lovebear.gif' . '" alt="' . ':oursamour' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':amourlit' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/love/lovebed.gif' . '" alt="' . ':amourlit' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':coeur' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/love/loveheart.gif' . '" alt="' . ':coeur' . '" />' ;
2012-05-30 12:10:57 -04:00
#Tired/Sleep smileys
$b [ 'texts' ][] = ':comptemoutons' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/tired/countsheep.gif' . '" alt="' . ':comptemoutons' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':hamac' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/tired/hammock.gif' . '" alt="' . ':hamac' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':oreiller' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/tired/pillow.gif' . '" alt="' . ':oreiller' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':bâille' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/tired/yawn.gif' . '" alt="' . ':bâille' . '" />' ;
2012-05-30 12:10:57 -04:00
#Fight/Flame/Violent smileys
$b [ 'texts' ][] = ':2pistolets' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/2guns.gif' . '" alt="' . ':2pistolets' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':combatalien' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/alienfight.gif' . '" alt="' . ':combatalien' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':armée' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/army.gif' . '" alt="' . ':armée' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':flèche' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/arrowhead.gif' . '" alt="' . ':flèche' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':bfg' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/bfg.gif' . '" alt="' . ':bfg' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':archer' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/bowman.gif' . '" alt="' . ':archer' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':tronçonneuse' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/chainsaw.gif' . '" alt="' . ':tronçonneuse' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':arbalète' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/crossbow.gif' . '" alt="' . ':arbalète' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':croisé' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/crusader.gif' . '" alt="' . ':croisé' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':mort' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/dead.gif' . '" alt="' . ':mort' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':marteau' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/hammersplat.gif' . '" alt="' . ':marteau' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':pistoletlaser' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/lasergun.gif' . '" alt="' . ':pistoletlaser' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':mitrailleuse' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/machinegun.gif' . '" alt="' . ':mitrailleuse' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':acide' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fight/acid.gif' . '" alt="' . ':acide' . '" />' ;
2012-05-30 12:10:57 -04:00
#Fantasy smileys - monsters and dragons fantasy. The other type of fantasy belongs in adult smileys
$b [ 'texts' ][] = ':monstrealien' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fantasy/alienmonster.gif' . '" alt="' . ':monstrealien' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':barbare' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fantasy/barbarian.gif' . '" alt="' . ':barbare' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':dinosaure' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fantasy/dinosaur.gif' . '" alt="' . ':dinosaure' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':petitdragon' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fantasy/dragonwhelp.gif' . '" alt="' . ':petitdragon' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':fantôme' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fantasy/ghost.gif' . '" alt="' . ':fantôme' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':momie' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/fantasy/mummy.gif' . '" alt="' . ':momie' . '" />' ;
2012-05-30 12:10:57 -04:00
#Food smileys
$b [ 'texts' ][] = ':pomme' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/food/apple.gif' . '" alt="' . ':pomme' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':brocoli' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/food/broccoli.gif' . '" alt="' . ':brocoli' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':gâteau' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/food/cake.gif' . '" alt="' . ':gâteau' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':carotte' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/food/carrot.gif' . '" alt="' . ':carotte' . '" />' ;
2012-05-30 12:10:57 -04:00
2012-06-05 17:02:24 -04:00
$b [ 'texts' ][] = '~popcorn' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/food/popcorn.gif' . '" alt="' . '~popcorn' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':tomate' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/food/tomato.gif' . '" alt="' . ':tomate' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':banane' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/food/banana.gif' . '" alt="' . ':banane' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':cuisine' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/food/cooking.gif' . '" alt="' . ':cuisine' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':oeufauplat' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/food/fryegg.gif' . '" alt="' . ':oeufauplat' . '" />' ;
2012-05-30 12:10:57 -04:00
#Happy smileys
$b [ 'texts' ][] = ':nuage' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/happy/cloud9.gif' . '" alt="' . ':nuage' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':larmesdejoie' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/happy/tearsofjoy.gif' . '" alt="' . ':larmesdejoie' . '" />' ;
2012-05-30 12:10:57 -04:00
#Repsect smileys
$b [ 'texts' ][] = ':courbette' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/respect/bow.gif' . '" alt="' . ':courbette' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':bravo' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/respect/bravo.gif' . '" alt="' . ':bravo' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':viveleroi' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/respect/hailking.gif' . '" alt="' . ':viveleroi' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':numéro1' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/respect/number1.gif' . '" alt="' . ':numéro1' . '" />' ;
2012-05-30 12:10:57 -04:00
#Laugh smileys
#Music smileys
$b [ 'texts' ][] = ':batterie' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/music/drums.gif' . '" alt="' . ':batterie' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':guitare' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/music/guitar.gif' . '" alt="' . ':guitare' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':trompette' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/music/trumpet.gif' . '" alt="' . ':trompette' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':violon' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/music/violin.gif' . '" alt="' . ':violon' . '" />' ;
2012-05-30 12:10:57 -04:00
#Smileys that used to be in core
$b [ 'texts' ][] = ':cognetête' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/oldcore/headbang.gif' . '" alt="' . ':cognetête' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':barbu' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/oldcore/beard.png' . '" alt="' . ':barbu' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':barbeblanche' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/oldcore/whitebeard.png' . '" alt="' . ':barbeblanche' . '" />' ;
2012-05-30 12:10:57 -04:00
$b [ 'texts' ][] = ':tête' ;
2019-12-29 21:55:10 -05:00
$b [ 'icons' ][] = '<img src="' . DI :: baseUrl () -> get () . '/addon/smiley_pack/icons/oldcore/headbang.gif' . '" alt="' . ':tête' . '" />' ;
2012-05-30 12:10:57 -04:00
}