In the old SugarCRM 6 world, if you wanted to create a custom action and call it directly it was as simple as creating a PHP file and dropping it in a directory. To illustrate, here is a simple example of an action called "HelloWorld". This exists in /custom/modules/Campaigns/HelloWorld.php:
To call the file you would simply pass the module and action in your URL: /index.php?module=Campaigns&action=HelloWorld.
In SugarCRM 7.* it is basically the same, but with one small change. You will need to add your action to the $action_file_map array for the module. When creating an installable package, you would add a definition to the action_file_map array in your manifest like:
After install, this file would then be found in /custom/Extension/modules/Campaigns/Ext/ActionFileMap/HelloWorld.php. If you are just testing things out and don't need to put it in your manifest yet, then you can simply drop the file in /modules/Campaigns/action_file_map.php. Remember, that file is not safe to use if you are creating a solution that you plan on distributing. Also, for some reason doing it in /custom, as you typically would do in that case and could in the past, no longer works.
Here is what the contents of HelloWorld.php would look like. Note that we have to now use lowercase for the action name. It will not work with camel case naming anymore.
To call this URL it would be /#bwc/index.php?module=Campaigns&action=helloworld.
NOTE: This only works with backwards compatible modules (BWC). We have not found a way yet to get this to work for the new framework.
Hopefully that helps someone else. We'll follow up when we find how this works for non-BWC modules. If you know the answer, please do share below and we'll add it to the post.
Edit: Thanks to Mike Solomon for pointing out that you can use the #bwc URL for non-BWC modules. This is a nice work around for directly calling an action for SugarCRM 7 modules. For example:
#bwc/index.php?module=MyCustomModule&action=MyCustomAction
-
Upsert® LaunchPad
Add an always-available menu of links on Sugar's navigation bar, configured uniquely for different teams and roles.
-
Outlook 365 and Sugar Integration
Make life easier by reducing the need to flip between apps. If you are using Outlook Web App, Outlook 2013, or Outlook 2016 connected to Office365 or Exchange Server 2013 then be sure to take advantag...
-
PhoneBurner for Sugar: Power Dialer
FEATUREDIntegrate Sugar with PhoneBurner. Boost call volume and live client interactions with our Sugar power dialer. Dial leads live (no awkward pause), leave pre-recorded voicemails, send 1-click emails, se...
- Show more addons