Add menu item to Mantis
Apr.08, 2010 in
Notes
Modify config_inc.php and add
1 2 3 4 5 6 7 8 | $g_enable_project_documentation = ON; $g_smtp_host = 'localhost'; $g_window_title = 'SimuWorld Bugtracker'; $g_logo_image = 'images/mantis_logo.gif'; $g_favicon_image = 'images/favicon.ico'; //The following line add two custom menu items with different access level controls //The contants used here can be found in ./core/constant_inc.php, e.g. DEVELOPER, ANYBODY etc. $g_main_menu_custom_options = array( array( "WebSVN",DEVELOPER,'url_to_websvn' ),array( "test", ADMINISTRATOR,'' ) ); |
The recognized user roles can be found in ./core/constant_inc.php
1 2 3 4 5 6 7 8 9 |

Leave a Reply