Nagivs customization
Nagivs customization
Does anyone know how to change the name " Map Index " to something different like " Companyname Infrastructure " . My boss would like a more custom look .....
You do not have the required permissions to view the files attached to this post.
Re: Nagivs customization
*** Note: This will change it for all languages.
The easiest way (without changing a binary file) would be for you to edit this file:
Comment out (around line 276):
And add this below it:
So it looks like this:
The easiest way (without changing a binary file) would be for you to edit this file:
Code: Select all
/usr/local/nagvis/share/server/core/classes/GlobalIndexPage.phpCode: Select all
$arr['lang_mapIndex'] = $this->CORE->getLang()->getText('mapIndex');Code: Select all
$arr['lang_mapIndex'] = "Company Infrastructure";Code: Select all
#$arr['lang_mapIndex'] = $this->CORE->getLang()->getText('mapIndex');
$arr['lang_mapIndex'] = "Company Infrastructure";Re: Nagivs customization
that worked thank you !