X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fcb.php;h=030bea4d31849c068a8969c8929fae21530ff421;hb=a0530d1066d7268f1b1ea67bc3c254e9f9fc5ec8;hp=90e41fb6d5e1d821dac470aff382c6076919dd83;hpb=b9e4b9f2747deb5cdd7d7f68e200496e0c3162aa;p=friendica.git diff --git a/mod/cb.php b/mod/cb.php index 90e41fb6d5..030bea4d31 100644 --- a/mod/cb.php +++ b/mod/cb.php @@ -4,20 +4,21 @@ * General purpose landing page for plugins/addons */ +use Friendica\App; -function cb_init(App &$a) { +function cb_init(App $a) { call_hooks('cb_init'); } -function cb_post(App &$a) { +function cb_post(App $a) { call_hooks('cb_post', $_POST); } -function cb_afterpost(App &$a) { +function cb_afterpost(App $a) { call_hooks('cb_afterpost'); } -function cb_content(App &$a) { +function cb_content(App $a) { $o = ''; call_hooks('cb_content', $o); return $o;