/
var
/
www
/
html
/
sugar14
/
modules
/
ModuleBuilder
/
Upload File
HOME
<?php /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ //format '<action_name>' => '<view_name>', $action_view_map = [ 'index' => 'main', 'module' => 'module', 'modulefields' => 'modulefields', 'modulelabels' => 'modulelabels', 'relationships' => 'relationships', 'relationship' => 'relationship', 'resetmodule' => 'resetmodule', 'modulefield' => 'modulefield', 'displaydeploy' => 'displaydeploy', 'package' => 'package', 'dropdown' => 'dropdown', 'dropdowns' => 'dropdowns', 'detailview' => 'detail', 'editview' => 'edit', 'popup' => 'popup', 'home' => 'home', 'visibilityeditor' => 'visibilityeditor', 'exportcustomizations' => 'exportcustomizations', 'depdropdown' => 'depdropdown', 'roledropdownfilter' => 'roledropdownfilter', 'portalstyle' => 'portalstyle', 'portalpreview' => 'portalpreview', 'portalsync' => 'portalsync', 'portalstylesave' => 'portalstylesave', 'portalconfig' => 'portalconfig', 'portaltheme' => 'portaltheme', ]; // add those we need from the global action_view_map $action_view_map['dc'] = 'dc'; $action_view_map['dcajax'] = 'dcajax'; $action_view_map['quick'] = 'quick'; $action_view_map['quickcreate'] = 'quickcreate'; $action_view_map['spot'] = 'spot'; $action_view_map['inlinefield'] = 'inlinefield'; $action_view_map['inlinefieldsave'] = 'inlinefieldsave'; $action_view_map['pluginlist'] = 'plugins'; $action_view_map['downloadplugin'] = 'downloadplugin';