Hello,
Who can explain to me how to override the print_project_menu_bar() function who it in html_api.php line 623 ?
Thanks.
			
			
													[SOLVED]Function print project menu bar
Moderators: Developer, Contributor
[SOLVED]Function print project menu bar
					Last edited by Nolkyz on 26 Sep 2014, 13:46, edited 1 time in total.
									
			
						
										
						Re: Function print project menu bar
All my Colleagues want it for a better search by ctrl+f because we have many projects. 
I would override it for hide it on start.
			
			
									
						
										
						I would override it for hide it on start.
Re: Function print project menu bar
The clean way where you don't have to touch existing code is to write a plugin.
Disable again option show_project_menu_bar.
Hook to event EVENT_LAYOUT_CONTENT_BEGIN in the plugin.
Write a function that does nearly the same like print_project_menu_bar.
			
			
									
						
										
						Disable again option show_project_menu_bar.
Hook to event EVENT_LAYOUT_CONTENT_BEGIN in the plugin.
Write a function that does nearly the same like print_project_menu_bar.
Re: Function print project menu bar
Thanks atrol !