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
# access levels
define( 'ANYBODY', 0 );
define( 'VIEWER', 10 );
define( 'REPORTER', 25 );
define( 'UPDATER', 40 );
define( 'DEVELOPER', 55 );
define( 'MANAGER', 70 );
define( 'ADMINISTRATOR', 90 );
define( 'NOBODY', 100 );