Hi Mandy,
You can follow the steps below to create a new module in Sugar:
1. Open index.php, you can find this file here –
/SugarSuite-Full-4.0.1/index.php
2. Then add the module name under $app_list_strings[’record_type_module’]
$app_list_strings[’record_type_module’] = array(
‘Contact’ =’Contacts’,
‘Account’ = ‘Accounts’,
‘Opportunity’='Opportunities’,
‘Case’ =’Cases’,
‘Note’ =’Notes’,
‘Call’ =’Calls’,
‘Email’ =’Emails’,
‘Meeting’='Meetings’,
‘Task’ =’Tasks’,
‘Lead’ =’Leads’,
‘Bug’ =’Bugs’,
‘Contract’=’ Contract ‘, (I am Adding Contract as new module)
);
3. Then open next file called modules.php, you can find this file here
/SugarSuite-Full-4.0.1/include/modules.php
More here
http://sugarcrm.openapp.org/?p=14
Create the sub-panel here
http://sugarcrm.openapp.org/?p=94
Do let me know how far it worked.
Regards,
Bookmarks