mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-25 12:03:41 +00:00
adult_smile addon
This commit is contained in:
parent
2f467fb853
commit
14770093d9
4 changed files with 34 additions and 0 deletions
BIN
adult_smile.tgz
Normal file
BIN
adult_smile.tgz
Normal file
Binary file not shown.
34
adult_smile/adult_smile.php
Normal file
34
adult_smile/adult_smile.php
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* Name: Adult Smilies
|
||||||
|
* Description: Smily icons that could or should not be included in core
|
||||||
|
* Version: 1.0
|
||||||
|
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||||||
|
*
|
||||||
|
* This is a template for how to extend the "smily" code.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
function adult_smile_install() {
|
||||||
|
register_hook('smilie', 'addon/adult_smile/adult_smile.php', 'adult_smile_smilies');
|
||||||
|
}
|
||||||
|
|
||||||
|
function adult_smile_uninstall() {
|
||||||
|
unregister_hook('smilie', 'addon/adult_smile/adult_smile.php', 'adult_smile_smilies');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function adult_smile_smilies(&$a,&$b) {
|
||||||
|
|
||||||
|
$b['texts'][] = '(o)(o)';
|
||||||
|
$b['icons'][] = '<img src="' . $a->get_baseurl() . '/addon/adult_smile/icons/tits.gif' . '" alt="' . '(o)(o)' . '" />';
|
||||||
|
|
||||||
|
$b['texts'][] = '(.)(.)';
|
||||||
|
$b['icons'][] = '<img src="' . $a->get_baseurl() . '/addon/adult_smile/icons/tits.gif' . '" alt="' . '(.)(.)' . '" />';
|
||||||
|
|
||||||
|
$b['texts'][] = ':bong';
|
||||||
|
$b['icons'][] = '<img src="' . $a->get_baseurl() . '/addon/adult_smile/icons/bong.gif' . '" alt="' . ':bong' . '" />';
|
||||||
|
|
||||||
|
|
||||||
|
}
|
BIN
adult_smile/icons/bong.gif
Normal file
BIN
adult_smile/icons/bong.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
BIN
adult_smile/icons/tits.gif
Normal file
BIN
adult_smile/icons/tits.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 696 B |
Loading…
Reference in a new issue