Continuing on our journey of adding a global menu item, last week I covered how to pass data through to our custom menu option. However, I did so by simply copying over the core profileactions .hbt and .js file over to custom which leaves it vulnerable to being overwritten by some other add-on down the road. To minimize that risk I will now cover how to create a custom view that extends the core profileactions view.
Copy the Custom View
Copy these existing files:
- /custom/clients/base/views/profileactions/profileactions.hbt
- /custom/clients/base/views/profileactions/profileactions.js
- /custom/clients/base/views/wiki-profileactions/wiki-profileactions.hbt
- /custom/clients/base/views/wiki-profileactions/wiki-profileactions.js
The new wiki-profileactions.hbt will remain exactly like it was before where the whole menu will be defined. Ideally we would just have our single, new addition to the menu in this file, but that does not seem possible yet.
Extending a SugarCRM View
The big change will be with wiki-profileactions.js. Instead of redefining the whole profileactions view we will extend from the core view and simply invoke the parent in the method that we want to override:
Altering a Layout Definition
The final step is to tell the header layout to use the new wiki-profileactions view. Copy over /clients/base/layouts/header/header.php to /custom/clients/base/layouts/header/header.php and change the profileactions reference to wiki-profileactions:
Now run a Quick Repair & Rebuild (should be able to skip if you have developerMode turned on) then refresh the page. You should should then see your menu item as before, but now with a mostly safe way of coding it.
Of course, the yet unsolved issue with this method is that now the header layout can be stomped out by anyone else. The code is safe, but it may no longer show if someone else touches header.php. I'd like to find a way to hook in and trigger a call to a build and add the additional menu item AFTER the core profileactions view (or any view for that matter) has loaded.
Anyone have any ideas?
-
Drawing and Signature Field
Need a way to have customers sign a receipt or for project managers to draw a mock-up in real time right inside of Sugar? Add drawing fields to any SugarCRM module right from within Studio. Especi...
-
Upsert® Calendar
See the events from all activity modules plus your custom modules in one calendar. Create shared calendars by users, teams, and roles, see your activity lineup in agenda view, and manage employee shif...
-
Mail Merge Reports
Create documents in docx, xlsx (MS Office Word and Excel), odt, ods (LibreOffice and OpenOffice) and pdf format without MS Office or others plugins installed from any module and subpanel using templat...
- Show more addons