mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-08 15:54:27 +02:00
10 lines
180 B
JavaScript
10 lines
180 B
JavaScript
var addon_hooks={};
|
|
|
|
function Addon_registerHook( type, hookfnstr )
|
|
{
|
|
if (!addon_hooks.hasOwnProperty(type)) {
|
|
addon_hooks[type]=[];
|
|
}
|
|
|
|
addon_hooks[type].push( hookfnstr );
|
|
}
|