function buildExportLink($id = 'export_link') { $script = ""; if (ACLController::checkAccess($this->seed->module_dir, 'export', true)) { if ($this->export) { $script = parent::buildExportLink($id); } } return $script . formLetter::LVSmarty(); }
function buildExportLink($id = 'export_link') { global $app_strings; global $sugar_config; $script = ""; if (ACLController::checkAccess($this->seed->module_dir, 'export', true)) { if ($this->export) { $script = parent::buildExportLink($id); } } $script .= "<a href='javascript:void(0)' id='map_listview_top' " . " onclick=\"return sListView.send_form(true, 'jjwg_Maps', " . "'index.php?entryPoint=jjwg_Maps&display_module={$_REQUEST['module']}', " . "'{$app_strings['LBL_LISTVIEW_NO_SELECTED']}')\">{$app_strings['LBL_MAP']}</a>"; return formLetter::LVSmarty() . $script; }