Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
320 B
24 lines
320 B
<?php |
|
|
|
/** |
|
* General purpose landing page for plugins/addons |
|
*/ |
|
|
|
|
|
function cb_init(&$a) { |
|
call_hooks('cb_init'); |
|
} |
|
|
|
function cb_post(&$a) { |
|
call_hooks('cb_post', $_POST); |
|
} |
|
|
|
function cb_afterpost(&$a) { |
|
call_hooks('cb_afterpost'); |
|
} |
|
|
|
function cb_content(&$a) { |
|
$o = ''; |
|
call_hooks('cb_content', $o); |
|
return $o; |
|
} |