How to change module title

Hi,

I need to change the “Contacts” to “View Contacts”

I need to change the “Create” to “Create Contact”

Kindly Suggest me a solution,
Thanks in advance

To change the label of EditView and Listview, need to change in core file:

File Path: include/MVC/View/SugarView.php

To Change CREATE to CREATE CONTACT label, need to change in _getModuleTitleParams() function as shown in below screenshot,

If you want to change only for the Contacts module then add the condition of the module as shown in the below screenshot.

To Change CONTACTS to VIEW CONTACTS label, need to change in _getModuleTitleListParam() function as shown in below screenshot,

If you want to change only for the Contacts module then add the condition of the module as shown in the below screenshot.

The labels can all be changed in an upgrade-safe manner:

I don’t recommend making changes to core files, they might get overwritten in upgrades…


please have a look . maybe it is useful to their need.