t('Upload profile photo'), 'cover_photo' => t('Upload cover photo'), 'profiles' => t('Edit your profile'), ], t('Find and Connect with others'), [ 'directory' => t('View the directory'), 'directory?f=&suggest=1' => t('View friend suggestions'), 'connections' => t('Manage your connections'), ], t('Communicate'), [ 'channel/' . $channel['channel_address'] => t('View your channel homepage'), 'network' => t('View your network stream'), ], t('Miscellaneous'), [ 'settings' => t('Settings'), 'help' => t('Documentation'), ] ]; $site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false); $net_firehose = ((get_config('system','disable_discover_tab',1)) ? false : true); // hack to put this in the correct spot of the array if($site_firehose || $net_firehose) { $options[5]['pubstream'] = t('View public stream'); } $o = replace_macros(get_markup_template('new_member.tpl'), [ '$title' => t('New Member Links'), '$options' => $options ]); return $o; } }