From 4b22c6e531739d96fbe9c78f629aa34c35acb821 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 21 Mar 2013 02:21:44 -0700 Subject: update --- boot.php | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index d424a44d7..576872153 100644 --- a/boot.php +++ b/boot.php @@ -1923,37 +1923,45 @@ function profile_tabs($a, $is_owner=False, $nickname=Null){ $tabs = array( array( - 'label'=>t('Status'), - 'url' => $url, - 'sel' => ((argv(0)=='channel')?'active':''), + 'label' => t('Channel'), + 'url' => $url, + 'sel' => ((argv(0) == 'channel') ? 'active' : ''), 'title' => t('Status Messages and Posts'), - 'id' => 'status-tab', + 'id' => 'status-tab', ), array( - 'label' => t('Profile'), + 'label' => t('About'), 'url' => $pr, - 'sel' => ((argv(0)=='profile')?'active':''), + 'sel' => ((argv(0) == 'profile') ? 'active' : ''), 'title' => t('Profile Details'), - 'id' => 'profile-tab', + 'id' => 'profile-tab', ), array( 'label' => t('Photos'), 'url' => $a->get_baseurl() . '/photos/' . $nickname, - 'sel' => ((argv(0)=='photos')?'active':''), + 'sel' => ((argv(0) == 'photos') ? 'active' : ''), 'title' => t('Photo Albums'), - 'id' => 'photo-tab', + 'id' => 'photo-tab', ), ); + if ($is_owner){ $tabs[] = array( 'label' => t('Events'), 'url' => $a->get_baseurl() . '/events', - 'sel' =>((argv(0)=='events')?'active':''), + 'sel' => ((argv(0) == 'events') ? 'active' : ''), 'title' => t('Events and Calendar'), - 'id' => 'events-tab', + 'id' => 'events-tab', ); } + else { + // FIXME + // we probably need a listing of events that were created by + // this channel and are visible to the observer + + + } $arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs); -- cgit v1.2.3