mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
The events moved from the profile to the navigation bar - for supported themes
This commit is contained in:
parent
2e8caf7f27
commit
68a6f0298e
8 changed files with 41 additions and 24 deletions
1
boot.php
1
boot.php
|
@ -408,6 +408,7 @@ if(! class_exists('App')) {
|
|||
public $videoheight = 350;
|
||||
public $force_max_items = 0;
|
||||
public $theme_thread_allow = true;
|
||||
public $theme_events_in_profile = true;
|
||||
|
||||
// An array for all theme-controllable parameters
|
||||
// Mostly unimplemented yet. Only options 'stylesheet' and
|
||||
|
|
|
@ -664,6 +664,7 @@ if(! function_exists('profile_tabs')){
|
|||
);
|
||||
|
||||
if ($is_owner){
|
||||
if ($a->theme_events_in_profile)
|
||||
$tabs[] = array(
|
||||
'label' => t('Events'),
|
||||
'url' => $a->get_baseurl() . '/events',
|
||||
|
|
|
@ -240,6 +240,7 @@ function nav_set_selected($item){
|
|||
'settings' => null,
|
||||
'contacts' => null,
|
||||
'manage' => null,
|
||||
'events' => null,
|
||||
'register' => null,
|
||||
);
|
||||
$a->nav_sel[$item] = 'selected';
|
||||
|
|
|
@ -179,6 +179,10 @@ function events_content(&$a) {
|
|||
);
|
||||
}
|
||||
|
||||
if ($a->theme_events_in_profile)
|
||||
nav_set_selected('home');
|
||||
else
|
||||
nav_set_selected('events');
|
||||
|
||||
$editselect = 'none';
|
||||
if( feature_enabled(local_user(), 'richtext') )
|
||||
|
@ -249,6 +253,7 @@ function events_content(&$a) {
|
|||
|
||||
$o ="";
|
||||
// tabs
|
||||
if ($a->theme_events_in_profile)
|
||||
$tabs = profile_tabs($a, True);
|
||||
|
||||
|
||||
|
|
|
@ -9,6 +9,8 @@ function notes_init(&$a) {
|
|||
|
||||
$which = $a->user['nickname'];
|
||||
|
||||
nav_set_selected('home');
|
||||
|
||||
// profile_load($a,$which,$profile);
|
||||
|
||||
}
|
||||
|
|
|
@ -17,6 +17,8 @@ function photos_init(&$a) {
|
|||
return;
|
||||
}
|
||||
|
||||
nav_set_selected('home');
|
||||
|
||||
$o = '';
|
||||
|
||||
if($a->argc > 1) {
|
||||
|
|
|
@ -15,6 +15,8 @@ function videos_init(&$a) {
|
|||
return;
|
||||
}
|
||||
|
||||
nav_set_selected('home');
|
||||
|
||||
$o = '';
|
||||
|
||||
if($a->argc > 1) {
|
||||
|
|
|
@ -10,6 +10,9 @@
|
|||
*/
|
||||
|
||||
function vier_init(&$a) {
|
||||
|
||||
$a->theme_events_in_profile = false;
|
||||
|
||||
set_template_engine($a, 'smarty3');
|
||||
|
||||
$baseurl = $a->get_baseurl();
|
||||
|
|
Loading…
Reference in a new issue