Change priority icon?

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
hinke
Posts: 23
Joined: 15 Feb 2005, 08:35
Location: Lund, Sweden
Contact:

Change priority icon?

Post by hinke »

Can we change the priority icon or add our own icon? If so, how?

Thanks.
Narcissus
Developer
Posts: 338
Joined: 17 Feb 2005, 09:45

Post 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.
hinke
Posts: 23
Joined: 15 Feb 2005, 08:35
Location: Lund, Sweden
Contact:

Post by hinke »

Thanks!
MM

Post by MM »

Hi Guys! Is there a way to use words "Medium", "High" etc instead of using graphic icons for the "Priority" column?
Leonard
Posts: 4
Joined: 23 Jan 2006, 10:09
Location: Eisleben, Germany

Post 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
MM

Post by MM »

Great! thanks Leonard!
Post Reply