Create Custom EntryPoint
This blog post explains how to create custom entrypoint. Steps are as below, Step 1 : First of all create an file in \custom\include\MVC\Controller\entry_point_registry.php and add below code, <?php if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); require SUGAR_PATH . '/include/MVC/Controller/entry_point_registry.php'; $entry_point_registry['<entry_point_name>']=array('file' => 'custom/modules/<desired_module>/<any_name>.php', 'auth' => true); ?> Step 2 :…