Page 1 of 1

Change priority icon?

Posted: 14 Feb 2006, 13:57
by hinke
Can we change the priority icon or add our own icon? If so, how?

Thanks.

Posted: 14 Feb 2006, 14:23
by Narcissus
Hi hinke:

There's an array defined in config_defaults_inc.php called $g_status_icon_arr. Copy that definition into your config_inc.php file and change it use whatever file names you like.

The filenames are relative to the images/ subdirectory.

Hope that helps,
Lincoln.

Posted: 14 Feb 2006, 14:57
by hinke
Thanks!

Posted: 15 Feb 2006, 19:07
by MM
Hi Guys! Is there a way to use words "Medium", "High" etc instead of using graphic icons for the "Priority" column?

Posted: 16 Feb 2006, 08:23
by Leonard
Hi MM!
MM wrote:Is there a way to use words "Medium", "High" etc instead of using graphic icons for the "Priority" column?
You can instert the following line into config_inc.php to display the text, not the icon.

Code: Select all

	# --- show priority as icon ---
	# OFF: Shows priority as icon in view all bugs page
	# ON:  Shows priority as text in view all bugs page
	$g_show_priority_text	= ON;
With

Code: Select all

$s_priority_enum_string = 
in custom_strings_inc.php you can define your names of the priority. The default values are in \lang\strings_<language>.txt.

Tobias

Posted: 16 Feb 2006, 20:09
by MM
Great! thanks Leonard!