aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-27 20:15:15 -0700
committerfriendica <info@friendica.com>2012-03-27 20:15:15 -0700
commit0aa99acd35efa2b0f95363c461b931d2deb52b3f (patch)
tree1040a54f7db429c779ed8766e1afee83d2439ba9 /boot.php
parent7ee07daf04e516900fb1d9c77debf7f2b7f91fc8 (diff)
downloadvolse-hubzilla-0aa99acd35efa2b0f95363c461b931d2deb52b3f.tar.gz
volse-hubzilla-0aa99acd35efa2b0f95363c461b931d2deb52b3f.tar.bz2
volse-hubzilla-0aa99acd35efa2b0f95363c461b931d2deb52b3f.zip
profile_tabs hook
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 76c0057bd..3dcb32dfa 100755
--- a/boot.php
+++ b/boot.php
@@ -1381,6 +1381,11 @@ function profile_tabs($a, $is_owner=False, $nickname=Null){
);
}
+
+ $arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
+ call_hooks('profile_tabs', $arr);
+
$tpl = get_markup_template('common_tabs.tpl');
- return replace_macros($tpl,array('$tabs'=>$tabs));
+
+ return replace_macros($tpl,array('$tabs' => $arr['tabs']));
}}