View file File name : LeadsJjwg_MapsLogicHook.php Content :<?php if (!defined('sugarEntry') || !sugarEntry) { die('Not A Valid Entry Point'); } class LeadsJjwg_MapsLogicHook { public $jjwg_Maps; public function __construct() { $this->jjwg_Maps = get_module_info('jjwg_Maps'); } public function updateGeocodeInfo(&$bean, $event, $arguments) { // before_save if ($this->jjwg_Maps->settings['logic_hooks_enabled']) { $this->jjwg_Maps->updateGeocodeInfo($bean); } } public function updateRelatedMeetingsGeocodeInfo(&$bean, $event, $arguments) { // after_save if ($this->jjwg_Maps->settings['logic_hooks_enabled']) { $this->jjwg_Maps->updateRelatedMeetingsGeocodeInfo($bean); } } }