Page 1 of 1

Tab names

Posted: 24 Jun 2012, 15:12
by Aaron
Where can I change the names on the tabs across the top of the page, named Dashboard, Activities, Candidates, Companies, etc.?

Re: Tab names

Posted: 13 Sep 2012, 16:42
by Sebbo
Hi Aaron,

i don't know if you solved this meanwhile on your own.

If not, you can rename the tab names in the corresponding [tabname]UI.php in the /modules folder.

Right after the includes you find

public function __construct()
{
parent::__construct();

$this->_authenticationRequired = true;
$this->_moduleDirectory = 'candidates';
$this->_moduleName = 'candidates';
$this->_moduleTabText = 'Candidates'; <- Here you can change the tab text
$this->_subTabs = array(
'Add Candidate => CATSUtility::getIndexName() . '?m=candidates&a=add*al=' . ACCESS_LEVEL_EDIT, <- Here you can change link texts under the tabs
'Search Candidate' => CATSUtility::getIndexName() . '?m=candidates&a=search'
);
}

Tab Name change takes effect after an new login.

Re: Tab names

Posted: 04 Jun 2019, 15:35
by Anil
I have tried but it is not working.

Re: Tab names

Posted: 04 Jun 2019, 15:40
by Anil
Sorry, it is working now.