Mantis + Timetracker

General discussion of Mantis.

Moderators: Developer, Contributor

Post Reply
gbl
Posts: 4
Joined: 13 Aug 2010, 08:27

Mantis + Timetracker

Post by gbl »

Hallo,

I've installed Mantis in latest Version but I'm missing the Timetracker/Billing Feature - shown in the DEMO Page.
How can I install it?

sincerly
Guenter
atrol
Site Admin
Posts: 8571
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: Mantis + Timetracker

Post by atrol »

add the following lines to file config_inc.php and adjust as needed

Code: Select all

	/**
	 * Turn on Time Tracking accounting
	 * @global int $g_time_tracking_enabled
	 */
	$g_time_tracking_enabled = ON;

	/**
	 * A billing sums
	 * @global int $g_time_tracking_with_billing
	 */
	$g_time_tracking_with_billing = OFF;

	/**
	 * Stop watch to build time tracking field
	 * @global int $g_time_tracking_stopwatch
	 */
	$g_time_tracking_stopwatch = OFF;

	/**
	 * access level required to view time tracking information
	 * @global int $g_time_tracking_view_threshold
	 */
	$g_time_tracking_view_threshold = DEVELOPER;

	/**
	 * access level required to add/edit time tracking information
	 * @global int $g_time_tracking_edit_threshold
	 */
	$g_time_tracking_edit_threshold = DEVELOPER;

	/**
	 * access level required to run reports
	 * @global int $g_time_tracking_reporting_threshold
	 */
	$g_time_tracking_reporting_threshold = MANAGER;

	/**
	 * allow time tracking to be recorded without a bugnote
	 * @global int $g_time_tracking_without_note
	 */
	$g_time_tracking_without_note = ON;
Please use Search before posting and read the Manual
Post Reply