]> git.mxchange.org Git - friendica.git/blob - mod/cb.php
photos-albms widget: add some classes
[friendica.git] / mod / cb.php
1 <?php
2
3 /**
4  * General purpose landing page for plugins/addons
5  */
6
7
8 function cb_init(&$a) {
9         call_hooks('cb_init');
10 }
11
12 function cb_post(&$a) {
13         call_hooks('cb_post', $_POST);
14 }
15
16 function cb_afterpost(&$a) {
17         call_hooks('cb_afterpost');
18 }
19
20 function cb_content(&$a) {
21         $o = '';
22         call_hooks('cb_content', $o);
23         return $o;
24 }