mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-21 23:47:57 +00:00
878 lines
36 KiB
PHP
Executable File
878 lines
36 KiB
PHP
Executable File
<?php
|
|
/**
|
|
*
|
|
* SugarCRM Community Edition is a customer relationship management program developed by
|
|
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
|
|
*
|
|
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
|
|
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU Affero General Public License version 3 as published by the
|
|
* Free Software Foundation with the addition of the following permission added
|
|
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
|
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
|
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License along with
|
|
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301 USA.
|
|
*
|
|
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
|
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of this program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU Affero General Public License version 3.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by
|
|
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
|
|
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
|
|
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
|
|
*/
|
|
|
|
if (!defined('sugarEntry') || !sugarEntry) {
|
|
die('Not A Valid Entry Point');
|
|
}
|
|
|
|
require_once('modules/ModuleBuilder/MB/ModuleBuilder.php') ;
|
|
require_once('modules/ModuleBuilder/parsers/ParserFactory.php') ;
|
|
require_once('modules/ModuleBuilder/Module/StudioModuleFactory.php');
|
|
require_once 'modules/ModuleBuilder/parsers/constants.php' ;
|
|
|
|
#[\AllowDynamicProperties]
|
|
class ModuleBuilderController extends SugarController
|
|
{
|
|
public $action_remap = array( ) ;
|
|
|
|
/**
|
|
* Used by the _getModuleTitleParams() method calls in ModuleBuilder views to get the correct string
|
|
* for the section you are in
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function getModuleTitle()
|
|
{
|
|
global $mod_strings;
|
|
|
|
if (!empty($_REQUEST['type'])) {
|
|
if ($_REQUEST['type'] == 'studio') {
|
|
return $mod_strings['LBL_STUDIO'];
|
|
} elseif ($_REQUEST['type'] == 'sugarportal') {
|
|
return $mod_strings['LBL_SUITEPORTAL'];
|
|
} elseif ($_REQUEST['type'] == 'mb') {
|
|
return $mod_strings['LBL_MODULEBUILDER'];
|
|
} elseif ($_REQUEST['type'] == 'dropdowns') {
|
|
return $mod_strings['LBL_DROPDOWNEDITOR'];
|
|
} elseif ($_REQUEST['type'] == 'home') {
|
|
return $mod_strings['LBL_HOME'];
|
|
} else {
|
|
return $mod_strings['LBL_DEVELOPER_TOOLS'];
|
|
}
|
|
} else {
|
|
return $mod_strings['LBL_DEVELOPER_TOOLS'];
|
|
}
|
|
}
|
|
|
|
public function fromModuleBuilder()
|
|
{
|
|
return (isset($_REQUEST [ 'MB' ]) && ($_REQUEST [ 'MB' ] == '1')) ;
|
|
}
|
|
|
|
public function process()
|
|
{
|
|
$GLOBALS [ 'log' ]->info(get_class($this).":") ;
|
|
global $current_user;
|
|
$access = $current_user->getDeveloperModules();
|
|
if ($current_user->isAdmin() || ($current_user->isDeveloperForAnyModule() && !isset($_REQUEST['view_module']) && (isset($_REQUEST['action']) && $_REQUEST['action'] != 'package'))||
|
|
(isset($_REQUEST['view_module']) && (in_array($_REQUEST['view_module'], $access)|| empty($_REQUEST['view_module']))) ||
|
|
(isset($_REQUEST['type']) && (($_REQUEST['type']=='dropdowns' && $current_user->isDeveloperForAnyModule())||
|
|
($_REQUEST['type']=='studio' && displayStudioForCurrentUser() == true)))) {
|
|
$this->hasAccess = true;
|
|
} else {
|
|
$this->hasAccess = false;
|
|
}
|
|
parent::process();
|
|
}
|
|
|
|
|
|
public function action_editLayout()
|
|
{
|
|
$view = strtolower($_REQUEST [ 'view' ]);
|
|
$found = false;
|
|
//Check the StudioModule first for mapping overrides
|
|
if (empty($_REQUEST [ 'view_package' ])|| $_REQUEST [ 'view_package' ] == "studio") {
|
|
$sm = StudioModuleFactory::getStudioModule($_REQUEST [ 'view_module' ]);
|
|
foreach ($sm->sources as $file => $def) {
|
|
if (!empty($def['type']) && !empty($def['view']) && $def['view'] == $view) {
|
|
$view = $def['type'];
|
|
}
|
|
}
|
|
}
|
|
if (!$found) {
|
|
switch ($view) {
|
|
case MB_EDITVIEW:
|
|
case MB_DETAILVIEW:
|
|
case MB_QUICKCREATE:
|
|
$this->view = 'layoutView' ;
|
|
break ;
|
|
case MB_LISTVIEW:
|
|
$this->view = 'listView' ;
|
|
break ;
|
|
case MB_BASICSEARCH:
|
|
case MB_ADVANCEDSEARCH:
|
|
$this->view = 'searchView' ;
|
|
break ;
|
|
case MB_DASHLET:
|
|
case MB_DASHLETSEARCH:
|
|
$this->view = 'dashlet' ;
|
|
break ;
|
|
case MB_POPUPLIST:
|
|
case MB_POPUPSEARCH:
|
|
$this->view = 'popupview' ;
|
|
break ;
|
|
default:
|
|
$GLOBALS [ 'log' ]->fatal('Action = editLayout with unknown view=' . $_REQUEST [ 'view' ]) ;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
public function action_ViewTree()
|
|
{
|
|
$mbt = null;
|
|
require_once('modules/ModuleBuilder/MB/AjaxCompose.php') ;
|
|
switch ($_REQUEST [ 'tree' ]) {
|
|
case 'ModuleBuilder':
|
|
require_once('modules/ModuleBuilder/MB/MBPackageTree.php') ;
|
|
$mbt = new MBPackageTree() ;
|
|
break ;
|
|
case 'Studio':
|
|
require_once('modules/ModuleBuilder/Module/StudioTree.php') ;
|
|
$mbt = new StudioTree() ;
|
|
}
|
|
$ajax = new AjaxCompose() ;
|
|
$ajax->addSection('west', $mbt->getName(), $mbt->fetchNodes()) ;
|
|
echo $ajax->getJavascript() ;
|
|
|
|
sugar_cleanup(true) ;
|
|
}
|
|
|
|
public function action_SavePackage()
|
|
{
|
|
$mb = new ModuleBuilder() ;
|
|
$load = (! empty($_REQUEST [ 'original_name' ])) ? $_REQUEST [ 'original_name' ] : $_REQUEST [ 'name' ] ;
|
|
if (! empty($load)) {
|
|
$mb->getPackage($load) ;
|
|
|
|
if (! empty($_REQUEST [ 'duplicate' ])) {
|
|
$result = $mb->packages [ $load ]->copy($_REQUEST [ 'name' ]) ;
|
|
$load = $mb->packages [ $load ]->name ;
|
|
$mb->getPackage($load) ;
|
|
}
|
|
$mb->packages [ $load ]->populateFromPost() ;
|
|
$mb->packages [ $load ]->loadModules() ;
|
|
$mb->save() ;
|
|
if (! empty($_REQUEST [ 'original_name' ]) && $_REQUEST [ 'original_name' ] != $_REQUEST [ 'name' ]) {
|
|
if (! $mb->packages [ $load ]->rename($_REQUEST [ 'name' ])) {
|
|
$mb->packages [ $load ]->name = $_REQUEST [ 'original_name' ] ;
|
|
$_REQUEST [ 'name' ] = $_REQUEST [ 'original_name' ] ;
|
|
}
|
|
}
|
|
$_REQUEST [ 'package' ] = $_REQUEST [ 'name' ] ;
|
|
$this->view = 'package' ;
|
|
}
|
|
}
|
|
|
|
public function action_BuildPackage()
|
|
{
|
|
$mb = new ModuleBuilder() ;
|
|
$load = $_REQUEST [ 'name' ] ;
|
|
if (! empty($load)) {
|
|
$mb->getPackage($load) ;
|
|
$mb->packages [ $load ]->build() ;
|
|
}
|
|
}
|
|
|
|
public function action_DeployPackage()
|
|
{
|
|
global $current_user;
|
|
|
|
if (defined('TEMPLATE_URL')) {
|
|
sugar_cache_reset();
|
|
SugarTemplateUtilities::disableCache();
|
|
}
|
|
|
|
//increment etag for menu so the new module shows up when the AJAX UI reloads
|
|
$current_user->incrementETag("mainMenuETag");
|
|
|
|
$mb = new ModuleBuilder() ;
|
|
$load = $_REQUEST [ 'package' ] ;
|
|
$message = $GLOBALS [ 'mod_strings' ] [ 'LBL_MODULE_DEPLOYED' ] ;
|
|
if (! empty($load)) {
|
|
$zip = $mb->getPackage($load) ;
|
|
require_once('ModuleInstall/PackageManager/PackageManager.php') ;
|
|
$pm = new PackageManager() ;
|
|
$info = $mb->packages [ $load ]->build(false) ;
|
|
$uploadDir = $pm->upload_dir.'/upgrades/module/';
|
|
mkdir_recursive($uploadDir) ;
|
|
rename($info [ 'zip' ], $uploadDir . $info [ 'name' ] . '.zip') ;
|
|
copy($info [ 'manifest' ], $uploadDir . $info [ 'name' ] . '-manifest.php') ;
|
|
$_REQUEST [ 'install_file' ] = $uploadDir. $info [ 'name' ] . '.zip' ;
|
|
$GLOBALS [ 'mi_remove_tables' ] = false ;
|
|
$pm->performUninstall($load) ;
|
|
//#23177 , js cache clear
|
|
clearAllJsAndJsLangFilesWithoutOutput();
|
|
//#30747, clear the cache in memory
|
|
$cache_key = 'app_list_strings.'.$GLOBALS['current_language'];
|
|
sugar_cache_clear($cache_key);
|
|
sugar_cache_reset();
|
|
//clear end
|
|
$pm->performInstall($_REQUEST [ 'install_file' ], true);
|
|
|
|
//clear the unified_search_module.php file
|
|
require_once('modules/Home/UnifiedSearchAdvanced.php');
|
|
UnifiedSearchAdvanced::unlinkUnifiedSearchModulesFile();
|
|
|
|
//bug 44269 - start
|
|
|
|
//clear workflow admin modules cache
|
|
if (isset($_SESSION['get_workflow_admin_modules_for_user'])) {
|
|
unset($_SESSION['get_workflow_admin_modules_for_user']);
|
|
}
|
|
|
|
//clear "is_admin_for_module" cache
|
|
$sessionVar = 'MLA_'.$current_user->user_name;
|
|
foreach ($mb->packages as $package) {
|
|
foreach ($package->modules as $module) {
|
|
$_SESSION[$sessionVar][$package->name . '_' . $module->name] = true;
|
|
}
|
|
}
|
|
|
|
//recreate acl cache
|
|
$actions = ACLAction::getUserActions($current_user->id, true);
|
|
//bug 44269 - end
|
|
}
|
|
|
|
echo 'complete' ;
|
|
}
|
|
|
|
public function action_ExportPackage()
|
|
{
|
|
$mb = new ModuleBuilder() ;
|
|
$load = $_REQUEST [ 'name' ] ;
|
|
$author = $_REQUEST [ 'author' ] ;
|
|
$description = $_REQUEST [ 'description' ] ;
|
|
$readme = $_REQUEST [ 'readme' ] ;
|
|
if (! empty($load)) {
|
|
$mb->getPackage($load) ;
|
|
$mb->packages [ $load ]->author = $author ;
|
|
$mb->packages [ $load ]->description = $description ;
|
|
$mb->packages [ $load ]->exportProject() ;
|
|
$mb->packages [ $load ]->readme = $readme ;
|
|
}
|
|
}
|
|
|
|
public function action_DeletePackage()
|
|
{
|
|
$mb = new ModuleBuilder() ;
|
|
$mb->getPackage($_REQUEST [ 'package' ]) ;
|
|
$mb->packages [ $_REQUEST [ 'package' ] ]->delete() ;
|
|
$this->view = 'deletepackage' ;
|
|
}
|
|
|
|
public function action_SaveModule()
|
|
{
|
|
$mb = new ModuleBuilder() ;
|
|
$load = (! empty($_REQUEST [ 'original_name' ])) ? $_REQUEST [ 'original_name' ] : $_REQUEST [ 'name' ] ;
|
|
if (! empty($load)) {
|
|
$mb->getPackage($_REQUEST [ 'package' ]) ;
|
|
$mb->packages [ $_REQUEST [ 'package' ] ]->getModule($load) ;
|
|
$module = & $mb->packages [ $_REQUEST [ 'package' ] ]->modules [ $load ] ;
|
|
$module->populateFromPost() ;
|
|
$mb->save() ;
|
|
if (! empty($_REQUEST [ 'duplicate' ])) {
|
|
$module->copy($_REQUEST [ 'name' ]) ;
|
|
} else {
|
|
if (! empty($_REQUEST [ 'original_name' ]) && $_REQUEST [ 'original_name' ] != $_REQUEST [ 'name' ]) {
|
|
if (! $module->rename($_REQUEST [ 'name' ])) {
|
|
$module->name = $_REQUEST [ 'original_name' ] ;
|
|
$_REQUEST [ 'name' ] = $_REQUEST [ 'original_name' ] ;
|
|
}
|
|
}
|
|
}
|
|
|
|
$_REQUEST [ 'view_package' ] = $_REQUEST [ 'package' ] ;
|
|
$_REQUEST [ 'view_module' ] = $module->name ;
|
|
$this->view = 'module' ;
|
|
}
|
|
}
|
|
|
|
public function action_DeleteModule()
|
|
{
|
|
$mb = new ModuleBuilder() ;
|
|
$module = & $mb->getPackageModule($_REQUEST [ 'package' ], $_REQUEST [ 'view_module' ]) ;
|
|
$module->delete() ;
|
|
$this->view = 'package' ;
|
|
}
|
|
|
|
public function action_saveLabels()
|
|
{
|
|
require_once 'modules/ModuleBuilder/parsers/parser.label.php' ;
|
|
$parser = new ParserLabel($_REQUEST['view_module'], isset($_REQUEST [ 'view_package' ]) ? $_REQUEST [ 'view_package' ] : null) ;
|
|
$parser->handleSave($_REQUEST, $_REQUEST [ 'selected_lang' ]) ;
|
|
if (isset($_REQUEST [ 'view_package' ])) { //MODULE BUILDER
|
|
$this->view = 'modulelabels' ;
|
|
} else { //STUDIO
|
|
$this->view = isset($_REQUEST [ 'view' ]) ? 'edit' : 'labels' ; // detect if we are being called by the LayoutEditor rather than the LabelEditor (set in view.layoutlabel.php)
|
|
}
|
|
}
|
|
|
|
public function action_SaveLabel()
|
|
{
|
|
if (! empty($_REQUEST [ 'view_module' ]) && !empty($_REQUEST [ 'labelValue' ])) {
|
|
$_REQUEST [ "label_" . $_REQUEST [ 'label' ] ] = $_REQUEST [ 'labelValue' ] ;
|
|
require_once 'modules/ModuleBuilder/parsers/parser.label.php' ;
|
|
|
|
$req = $_REQUEST;
|
|
foreach (ModuleBuilder::getModuleAliases($_REQUEST['view_module']) as $key) {
|
|
$req['view_module'] = $key;
|
|
$parser = new ParserLabel($req['view_module'], isset($req['view_package']) ? $req['view_package'] : null);
|
|
$parser->handleSave($req, $GLOBALS['current_language']);
|
|
}
|
|
}
|
|
$this->view = 'modulefields' ;
|
|
}
|
|
|
|
public function action_ExportCustom()
|
|
{
|
|
$modules = $_REQUEST [ 'modules' ] ;
|
|
$name = $_REQUEST [ 'name' ] ;
|
|
$author = $_REQUEST [ 'author' ] ;
|
|
$description = $_REQUEST [ 'description' ] ;
|
|
ob_clean() ;
|
|
if (! empty($modules) && ! empty($name)) {
|
|
require_once('modules/ModuleBuilder/MB/ModuleBuilder.php') ;
|
|
$mb = new MBPackage($name) ;
|
|
$mb->author = $author ;
|
|
$mb->description = $description ;
|
|
$mb->exportCustom($modules, true, true) ;
|
|
}
|
|
}
|
|
|
|
public function action_SaveField()
|
|
{
|
|
require_once('modules/DynamicFields/FieldCases.php') ;
|
|
$field = get_widget($_REQUEST [ 'type' ]) ;
|
|
$_REQUEST [ 'name' ] = trim($_REQUEST [ 'name' ]) ;
|
|
|
|
$field->populateFromPost() ;
|
|
|
|
if (!isset($_REQUEST [ 'view_package' ])) {
|
|
require_once('modules/DynamicFields/DynamicField.php') ;
|
|
if (! empty($_REQUEST [ 'view_module' ])) {
|
|
$module = $_REQUEST [ 'view_module' ] ;
|
|
if ($module == 'Employees') {
|
|
$module = 'Users';
|
|
}
|
|
|
|
$bean = BeanFactory::getBean($module);
|
|
if (!empty($bean)) {
|
|
$field_defs = $bean->field_defs;
|
|
if (isset($field_defs[$field->name. '_c'])) {
|
|
$GLOBALS['log']->error($GLOBALS['mod_strings']['ERROR_ALREADY_EXISTS'] . '[' . $field->name . ']');
|
|
sugar_die($GLOBALS['mod_strings']['ERROR_ALREADY_EXISTS']);
|
|
}
|
|
}
|
|
|
|
$df = new DynamicField($module) ;
|
|
$class_name = $GLOBALS [ 'beanList' ] [ $module ] ;
|
|
require_once($GLOBALS [ 'beanFiles' ] [ $class_name ]) ;
|
|
$mod = new $class_name() ;
|
|
$df->setup($mod) ;
|
|
|
|
$field->save($df) ;
|
|
$this->action_SaveLabel() ;
|
|
include_once('modules/Administration/QuickRepairAndRebuild.php') ;
|
|
global $mod_strings;
|
|
$mod_strings['LBL_ALL_MODULES'] = 'all_modules';
|
|
require_once('ModuleInstall/ModuleInstaller.php');
|
|
$mi = new ModuleInstaller();
|
|
$mi->silent = true;
|
|
$mi->rebuild_extensions();
|
|
$repair = new RepairAndClear();
|
|
|
|
$repair->repairAndClearAll(array('rebuildExtensions', 'clearVardefs', 'clearTpls'), array($class_name), true, false);
|
|
if ($module == 'Users') {
|
|
$repair->repairAndClearAll(array('rebuildExtensions', 'clearVardefs', 'clearTpls'), array('Employee'), true, false);
|
|
}
|
|
|
|
//#28707 ,clear all the js files in cache
|
|
$repair->module_list = array();
|
|
$repair->clearJsFiles();
|
|
}
|
|
} else {
|
|
$mb = new ModuleBuilder() ;
|
|
$module = & $mb->getPackageModule($_REQUEST [ 'view_package' ], $_REQUEST [ 'view_module' ]) ;
|
|
$field->save($module) ;
|
|
$module->mbvardefs->save() ;
|
|
// get the module again to refresh the labels we might have saved with the $field->save (e.g., for address fields)
|
|
$module = & $mb->getPackageModule($_REQUEST [ 'view_package' ], $_REQUEST [ 'view_module' ]) ;
|
|
if (isset($_REQUEST [ 'label' ]) && isset($_REQUEST [ 'labelValue' ])) {
|
|
$module->setLabel($GLOBALS [ 'current_language' ], $_REQUEST [ 'label' ], $_REQUEST [ 'labelValue' ]) ;
|
|
}
|
|
$module->save();
|
|
}
|
|
$this->view = 'modulefields' ;
|
|
}
|
|
|
|
public function action_saveSugarField()
|
|
{
|
|
global $mod_strings;
|
|
require_once('modules/DynamicFields/FieldCases.php') ;
|
|
|
|
$field = get_widget($_REQUEST [ 'type' ]) ;
|
|
$_REQUEST [ 'name' ] = trim($_POST [ 'name' ]) ;
|
|
|
|
$field->populateFromPost() ;
|
|
require_once('modules/ModuleBuilder/parsers/StandardField.php') ;
|
|
$module = $_REQUEST [ 'view_module' ] ;
|
|
|
|
// Need to map Employees -> Users
|
|
if ($module=='Employees') {
|
|
$module = 'Users';
|
|
}
|
|
|
|
$df = new StandardField($module) ;
|
|
$mod = BeanFactory::getBean($module);
|
|
$class_name = $GLOBALS [ 'beanList' ] [ $module ] ;
|
|
$df->setup($mod) ;
|
|
|
|
$field->module = $mod;
|
|
$field->save($df) ;
|
|
$this->action_SaveLabel() ;
|
|
|
|
$MBmodStrings = $mod_strings;
|
|
$GLOBALS [ 'mod_strings' ] = return_module_language('', 'Administration') ;
|
|
|
|
include_once('modules/Administration/QuickRepairAndRebuild.php') ;
|
|
$GLOBALS [ 'mod_strings' ]['LBL_ALL_MODULES'] = 'all_modules';
|
|
$_REQUEST['execute_sql'] = true;
|
|
|
|
require_once('ModuleInstall/ModuleInstaller.php');
|
|
$mi = new ModuleInstaller();
|
|
$mi->silent = true;
|
|
$mi->rebuild_extensions();
|
|
|
|
$repair = new RepairAndClear();
|
|
$repair->repairAndClearAll(array('clearVardefs', 'clearTpls'), array($class_name), true, false);
|
|
//#28707 ,clear all the js files in cache
|
|
$repair->module_list = array();
|
|
$repair->clearJsFiles();
|
|
|
|
// now clear the cache so that the results are immediately visible
|
|
include_once('include/TemplateHandler/TemplateHandler.php') ;
|
|
TemplateHandler::clearCache($module) ;
|
|
if ($module == 'Users') {
|
|
TemplateHandler::clearCache('Employees');
|
|
}
|
|
|
|
$GLOBALS [ 'mod_strings' ] = $MBmodStrings;
|
|
}
|
|
|
|
public function action_RefreshField()
|
|
{
|
|
require_once('modules/DynamicFields/FieldCases.php') ;
|
|
$field = get_widget($_POST [ 'type' ]) ;
|
|
$field->populateFromPost() ;
|
|
$this->view = 'modulefield' ;
|
|
}
|
|
|
|
public function action_saveVisibility()
|
|
{
|
|
$packageName = (isset($_REQUEST [ 'view_package' ]) && (strtolower($_REQUEST['view_package']) != 'studio')) ? $_REQUEST [ 'view_package' ] : null ;
|
|
require_once 'modules/ModuleBuilder/parsers/ParserFactory.php' ;
|
|
$parser = ParserFactory::getParser(MB_VISIBILITY, $_REQUEST [ 'view_module' ], $packageName) ;
|
|
|
|
$json = getJSONobj();
|
|
$visibility_grid = $json->decode(html_entity_decode(rawurldecode($_REQUEST [ 'visibility_grid' ]), ENT_QUOTES));
|
|
$parser->saveVisibility($_REQUEST [ 'fieldname' ], $_REQUEST [ 'trigger' ], $visibility_grid) ;
|
|
|
|
echo $json->encode(array( "visibility_editor_{$_REQUEST['fieldname']}" => array("action" => "deactivate")));
|
|
}
|
|
|
|
public function action_SaveRelationshipLabel()
|
|
{
|
|
$selected_lang = (!empty($_REQUEST['relationship_lang'])?$_REQUEST['relationship_lang']:$_SESSION['authenticated_user_language']);
|
|
if (empty($_REQUEST [ 'view_package' ])) {
|
|
require_once 'modules/ModuleBuilder/parsers/relationships/DeployedRelationships.php' ;
|
|
$relationships = new DeployedRelationships($_REQUEST [ 'view_module' ]) ;
|
|
if (! empty($_REQUEST [ 'relationship_name' ])) {
|
|
if ($relationship = $relationships->get($_REQUEST [ 'relationship_name' ])) {
|
|
$metadata = $relationship->buildLabels(true);
|
|
require_once 'modules/ModuleBuilder/parsers/parser.label.php' ;
|
|
$parser = new ParserLabel($_REQUEST['view_module']) ;
|
|
$parser->handleSaveRelationshipLabels($metadata, $selected_lang) ;
|
|
}
|
|
}
|
|
} else {
|
|
//TODO FOR MB
|
|
}
|
|
$this->view = 'relationships' ;
|
|
}
|
|
|
|
public function action_SaveRelationship()
|
|
{
|
|
if (!empty($GLOBALS['current_user']) && empty($GLOBALS['modListHeader'])) {
|
|
$GLOBALS['modListHeader'] = query_module_access_list($GLOBALS['current_user']);
|
|
}
|
|
|
|
if (empty($_REQUEST [ 'view_package' ])) {
|
|
require_once 'modules/ModuleBuilder/parsers/relationships/DeployedRelationships.php' ;
|
|
$relationships = new DeployedRelationships($_REQUEST [ 'view_module' ]) ;
|
|
} else {
|
|
$mb = new ModuleBuilder() ;
|
|
$module = & $mb->getPackageModule($_REQUEST [ 'view_package' ], $_REQUEST [ 'view_module' ]) ;
|
|
require_once 'modules/ModuleBuilder/parsers/relationships/UndeployedRelationships.php' ;
|
|
$relationships = new UndeployedRelationships($module->getModuleDir()) ;
|
|
}
|
|
|
|
$relationships->addFromPost() ;
|
|
$relationships->save() ;
|
|
$GLOBALS['log']->debug("\n\nSTART BUILD");
|
|
if (empty($_REQUEST [ 'view_package' ])) {
|
|
$relationships->build() ;
|
|
LanguageManager::clearLanguageCache($_REQUEST [ 'view_module' ]);
|
|
}
|
|
$GLOBALS['log']->debug("\n\nEND BUILD");
|
|
$this->view = 'relationships' ;
|
|
}
|
|
|
|
public function action_DeleteRelationship()
|
|
{
|
|
if (isset($_REQUEST [ 'relationship_name' ])) {
|
|
if (empty($_REQUEST [ 'view_package' ])) {
|
|
require_once 'modules/ModuleBuilder/parsers/relationships/DeployedRelationships.php' ;
|
|
if (!empty($_REQUEST['remove_tables'])) {
|
|
$GLOBALS['mi_remove_tables'] = $_REQUEST['remove_tables'];
|
|
}
|
|
$relationships = new DeployedRelationships($_REQUEST [ 'view_module' ]) ;
|
|
} else {
|
|
$mb = new ModuleBuilder() ;
|
|
$module = & $mb->getPackageModule($_REQUEST [ 'view_package' ], $_REQUEST [ 'view_module' ]) ;
|
|
require_once 'modules/ModuleBuilder/parsers/relationships/UndeployedRelationships.php' ;
|
|
$relationships = new UndeployedRelationships($module->getModuleDir()) ;
|
|
}
|
|
$relationships->delete($_REQUEST [ 'relationship_name' ]) ;
|
|
|
|
$relationships->save() ;
|
|
require_once("data/Relationships/RelationshipFactory.php");
|
|
SugarRelationshipFactory::deleteCache();
|
|
}
|
|
$this->view = 'relationships' ;
|
|
}
|
|
|
|
public function action_SaveDropDown()
|
|
{
|
|
require_once 'modules/ModuleBuilder/parsers/parser.dropdown.php' ;
|
|
$parser = new ParserDropDown() ;
|
|
$parser->saveDropDown($_REQUEST) ;
|
|
$this->view = 'dropdowns' ;
|
|
}
|
|
|
|
public function action_DeleteField()
|
|
{
|
|
$module = null;
|
|
require_once('modules/DynamicFields/FieldCases.php') ;
|
|
$field = get_widget($_REQUEST [ 'type' ]) ;
|
|
$field->name = $_REQUEST [ 'name' ] ;
|
|
if (!isset($_REQUEST [ 'view_package' ])) {
|
|
if (! empty($_REQUEST [ 'name' ]) && ! empty($_REQUEST [ 'view_module' ])) {
|
|
require_once('modules/DynamicFields/DynamicField.php') ;
|
|
$moduleName = $_REQUEST [ 'view_module' ] ;
|
|
|
|
// bug 51325 make sure we make this switch or delete will not work
|
|
if ($moduleName == 'Employees') {
|
|
$moduleName = 'Users';
|
|
}
|
|
|
|
$class_name = $GLOBALS [ 'beanList' ] [ $moduleName ] ;
|
|
require_once($GLOBALS [ 'beanFiles' ] [ $class_name ]) ;
|
|
$seed = new $class_name() ;
|
|
$df = new DynamicField($moduleName) ;
|
|
$df->setup($seed) ;
|
|
//Need to load the entire field_meta_data for some field types
|
|
$field = $df->getFieldWidget($moduleName, $field->name);
|
|
$field->delete($df) ;
|
|
|
|
$GLOBALS [ 'mod_strings' ]['LBL_ALL_MODULES'] = 'all_modules';
|
|
$_REQUEST['execute_sql'] = true;
|
|
include_once('modules/Administration/QuickRepairAndRebuild.php') ;
|
|
$repair = new RepairAndClear();
|
|
$repair->repairAndClearAll(array('rebuildExtensions', 'clearVardefs', 'clearTpls'), array($class_name), true, false);
|
|
require_once 'modules/ModuleBuilder/Module/StudioModuleFactory.php' ;
|
|
$module = StudioModuleFactory::getStudioModule($moduleName) ;
|
|
}
|
|
} else {
|
|
$mb = new ModuleBuilder() ;
|
|
$module = & $mb->getPackageModule($_REQUEST [ 'view_package' ], $_REQUEST [ 'view_module' ]) ;
|
|
$field = $module->getField($field->name);
|
|
$field->delete($module) ;
|
|
$mb->save() ;
|
|
}
|
|
$module->removeFieldFromLayouts($field->name);
|
|
$this->view = 'modulefields' ;
|
|
|
|
if (isset($GLOBALS['current_language']) && isset($_REQUEST['label']) &&
|
|
isset($_REQUEST['labelValue']) && isset($_REQUEST['view_module'])) {
|
|
$this->DeleteLabel($GLOBALS['current_language'], $_REQUEST['label'], $_REQUEST['labelValue'], $_REQUEST['view_module']);
|
|
}
|
|
}
|
|
|
|
public function DeleteLabel($language, $label, $labelvalue, $modulename, $basepath = null, $forRelationshipLabel = false)
|
|
{
|
|
// remove the label
|
|
require_once 'modules/ModuleBuilder/parsers/parser.label.php';
|
|
ParserLabel::removeLabel($language, $label, $labelvalue, $modulename, $basepath, $forRelationshipLabel);
|
|
}
|
|
|
|
public function action_CloneField()
|
|
{
|
|
$this->view_object_map [ 'field_name' ] = $_REQUEST [ 'name' ] ;
|
|
$this->view_object_map [ 'is_clone' ] = true ;
|
|
$this->view = 'modulefield' ;
|
|
}
|
|
|
|
public function action_SaveAssistantPref()
|
|
{
|
|
global $current_user ;
|
|
if (isset($_REQUEST [ 'pref_value' ])) {
|
|
if ($_REQUEST [ 'pref_value' ] == 'ignore') {
|
|
$current_user->setPreference('mb_assist', 'DISABLED', 0, 'Assistant') ;
|
|
} else {
|
|
$current_user->setPreference('mb_assist', 'ENABLED', 0, 'Assistant') ;
|
|
}
|
|
$current_pref = $current_user->getPreference('mb_assist', 'Assistant') ;
|
|
echo "Assistant.processUserPref('$current_pref')" ;
|
|
sugar_cleanup(true) ; //push preferences to DB.
|
|
}
|
|
}
|
|
|
|
// Studio2 Actions
|
|
|
|
|
|
public function action_EditProperty()
|
|
{
|
|
$this->view = 'property' ;
|
|
}
|
|
|
|
public function action_saveProperty()
|
|
{
|
|
require_once 'modules/ModuleBuilder/parsers/parser.label.php' ;
|
|
$modules = $_REQUEST['view_module'];
|
|
if (!empty($_REQUEST['subpanel'])) {
|
|
$modules = $_REQUEST['subpanel'];
|
|
}
|
|
$parser = new ParserLabel($modules, isset($_REQUEST [ 'view_package' ]) ? $_REQUEST [ 'view_package' ] : null) ;
|
|
// if no language provided, then use the user's current language which is most likely what they intended
|
|
$language = (isset($_REQUEST [ 'selected_lang' ])) ? $_REQUEST [ 'selected_lang' ] : $GLOBALS['current_language'] ;
|
|
$parser->handleSave($_REQUEST, $language) ;
|
|
$json = getJSONobj();
|
|
echo $json->encode(array("east" => array("action" => "deactivate")));
|
|
}
|
|
|
|
public function action_editModule()
|
|
{
|
|
$this->view = 'module' ;
|
|
}
|
|
|
|
public function action_wizard()
|
|
{
|
|
$this->view = 'wizard' ;
|
|
}
|
|
|
|
/**
|
|
* Receive a layout through $_REQUEST and save it out to the working files directory
|
|
* Expects a series of $_REQUEST parameters all in the format $_REQUEST['slot-panel#-slot#-property']=value
|
|
*/
|
|
|
|
public function action_saveLayout()
|
|
{
|
|
$parser = ParserFactory::getParser($_REQUEST [ 'view' ], $_REQUEST [ 'view_module' ], isset($_REQUEST [ 'view_package' ]) ? $_REQUEST [ 'view_package' ] : null) ;
|
|
$this->view = 'layoutview' ;
|
|
$parser->writeWorkingFile() ;
|
|
|
|
if (!empty($_REQUEST [ 'sync_detail_and_edit' ]) && $_REQUEST['sync_detail_and_edit'] != false && $_REQUEST['sync_detail_and_edit'] != "false") {
|
|
if (strtolower($parser->_view) == MB_EDITVIEW) {
|
|
$parser2 = ParserFactory::getParser(MB_DETAILVIEW, $_REQUEST [ 'view_module' ], isset($_REQUEST [ 'view_package' ]) ? $_REQUEST [ 'view_package' ] : null) ;
|
|
$parser2->setUseTabs($parser->getUseTabs());
|
|
$parser2->writeWorkingFile() ;
|
|
}
|
|
}
|
|
}
|
|
|
|
public function action_saveAndPublishLayout()
|
|
{
|
|
$parser = ParserFactory::getParser($_REQUEST [ 'view' ], $_REQUEST [ 'view_module' ], isset($_REQUEST [ 'view_package' ]) ? $_REQUEST [ 'view_package' ] : null) ;
|
|
$parser->handleSave() ;
|
|
|
|
if (!empty($_REQUEST [ 'sync_detail_and_edit' ]) && $_REQUEST['sync_detail_and_edit'] != false && $_REQUEST['sync_detail_and_edit'] != "false") {
|
|
if (strtolower($parser->_view) == MB_EDITVIEW) {
|
|
$parser2 = ParserFactory::getParser(MB_DETAILVIEW, $_REQUEST [ 'view_module' ], isset($_REQUEST [ 'view_package' ]) ? $_REQUEST [ 'view_package' ] : null) ;
|
|
$parser2->setUseTabs($parser->getUseTabs());
|
|
$parser2->handleSave() ;
|
|
}
|
|
}
|
|
|
|
$this->view_object_map['new_parser'] = $parser;
|
|
$this->view = 'layoutview';
|
|
}
|
|
|
|
public function action_manageBackups()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Save the list view layout
|
|
*/
|
|
public function action_listViewSave()
|
|
{
|
|
$GLOBALS [ 'log' ]->info("action_listViewSave") ;
|
|
|
|
$packageName = (isset($_REQUEST [ 'view_package' ]) && (strtolower($_REQUEST['view_package']) != 'studio')) ? $_REQUEST [ 'view_package' ] : null ;
|
|
$subpanelName = (! empty($_REQUEST [ 'subpanel' ])) ? $_REQUEST [ 'subpanel' ] : null ;
|
|
require_once 'modules/ModuleBuilder/parsers/ParserFactory.php' ;
|
|
$parser = ParserFactory::getParser($_REQUEST [ 'view' ], $_REQUEST [ 'view_module' ], $packageName, $subpanelName) ;
|
|
$this->view = 'listView' ;
|
|
$parser->handleSave() ;
|
|
}
|
|
|
|
public function action_dashletSave()
|
|
{
|
|
$this->view = 'dashlet' ;
|
|
$packageName = (isset($_REQUEST [ 'view_package' ]) && (strtolower($_REQUEST['view_package']) != 'studio')) ? $_REQUEST [ 'view_package' ] : null ;
|
|
require_once 'modules/ModuleBuilder/parsers/ParserFactory.php' ;
|
|
$parser = ParserFactory::getParser($_REQUEST [ 'view' ], $_REQUEST [ 'view_module' ], $packageName) ;
|
|
$parser->handleSave() ;
|
|
}
|
|
|
|
public function action_popupSave()
|
|
{
|
|
$packageName = (isset($_REQUEST [ 'view_package' ]) && (strtolower($_REQUEST['view_package']) != 'studio')) ? $_REQUEST [ 'view_package' ] : null ;
|
|
require_once 'modules/ModuleBuilder/parsers/ParserFactory.php' ;
|
|
$parser = ParserFactory::getParser($_REQUEST [ 'view' ], $_REQUEST [ 'view_module' ], $packageName) ;
|
|
$parser->handleSave() ;
|
|
if (empty($packageName)) {
|
|
include_once('modules/Administration/QuickRepairAndRebuild.php') ;
|
|
global $mod_strings;
|
|
$mod_strings['LBL_ALL_MODULES'] = 'all_modules';
|
|
$repair = new RepairAndClear();
|
|
$repair->show_output = false;
|
|
$class_name = $GLOBALS [ 'beanList' ] [ $_REQUEST [ 'view_module' ] ] ;
|
|
$repair->module_list = array($class_name);
|
|
$repair->clearTpls();
|
|
}
|
|
|
|
$this->view_object_map['new_parser'] = $parser;
|
|
$this->view = 'popupview';
|
|
}
|
|
|
|
public function action_searchViewSave()
|
|
{
|
|
$packageName = (isset($_REQUEST [ 'view_package' ])) ? $_REQUEST [ 'view_package' ] : null ;
|
|
require_once 'modules/ModuleBuilder/parsers/views/SearchViewMetaDataParser.php' ;
|
|
$parser = new SearchViewMetaDataParser($_REQUEST [ 'view' ], $_REQUEST [ 'view_module' ], $packageName) ;
|
|
$parser->handleSave() ;
|
|
|
|
|
|
//Repair or create a custom SearchFields.php file as needed
|
|
$module_name = $_REQUEST [ 'view_module' ] ;
|
|
global $beanList;
|
|
if (isset($beanList[$module_name]) && $beanList[$module_name]!="") {
|
|
$objectName = BeanFactory::getObjectName($module_name);
|
|
|
|
//Load the vardefs for the module to pass to TemplateRange
|
|
VardefManager::loadVardef($module_name, $objectName, true);
|
|
global $dictionary;
|
|
$vardefs = $dictionary[$objectName]['fields'];
|
|
require_once('modules/DynamicFields/templates/Fields/TemplateRange.php');
|
|
TemplateRange::repairCustomSearchFields($vardefs, $module_name, $packageName);
|
|
}
|
|
$this->view = 'searchView' ;
|
|
}
|
|
|
|
public function action_editLabels()
|
|
{
|
|
if (isset($_REQUEST [ 'view_package' ])) { //MODULE BUILDER
|
|
$this->view = 'modulelabels';
|
|
} else { //STUDIO
|
|
$this->view = 'labels';
|
|
}
|
|
}
|
|
|
|
public function action_get_app_list_string()
|
|
{
|
|
require_once('include/JSON.php') ;
|
|
$json = new JSON() ;
|
|
if (isset($_REQUEST [ 'key' ]) && ! empty($_REQUEST [ 'key' ])) {
|
|
$key = $_REQUEST [ 'key' ] ;
|
|
$value = array( ) ;
|
|
if (! empty($GLOBALS [ 'app_list_strings' ] [ $key ])) {
|
|
$value = $GLOBALS [ 'app_list_strings' ] [ $key ] ;
|
|
} else {
|
|
$package_strings = array( ) ;
|
|
if (! empty($_REQUEST [ 'view_package' ]) && $_REQUEST [ 'view_package' ] != 'studio' && ! empty($_REQUEST [ 'view_module' ])) {
|
|
require_once('modules/ModuleBuilder/MB/ModuleBuilder.php') ;
|
|
$mb = new ModuleBuilder() ;
|
|
$module = & $mb->getPackageModule($_REQUEST [ 'view_package' ], $_REQUEST [ 'view_module' ]) ;
|
|
$lang = $GLOBALS [ 'current_language' ] ;
|
|
$module->mblanguage->generateAppStrings(false) ;
|
|
$package_strings = $module->mblanguage->appListStrings [ $lang . '.lang.php' ] ;
|
|
if (isset($package_strings [ $key ]) && is_array($package_strings [ $key ])) {
|
|
$value = $package_strings [ $key ] ;
|
|
}
|
|
}
|
|
}
|
|
echo $json->encode($value) ;
|
|
}
|
|
}
|
|
|
|
public function action_history()
|
|
{
|
|
$this->view = 'history' ;
|
|
}
|
|
|
|
public function resetmodule()
|
|
{
|
|
$this->view = 'resetmodule';
|
|
}
|
|
|
|
|
|
/**
|
|
* savetablesort
|
|
* This method handles saving the current user's tabling sorting preferences. It is called when
|
|
* the user clicks on a column to sort from the fields layout table.
|
|
*
|
|
*/
|
|
public function action_savetablesort()
|
|
{
|
|
$this->view = 'ajax';
|
|
global $current_user;
|
|
|
|
if (!empty($current_user) && isset($_REQUEST['column']) && isset($_REQUEST['direction'])) {
|
|
$direction = ($_REQUEST['direction'] == 'yui-dt-asc') ? 'ASC' : 'DESC';
|
|
$valid_columns = array('name', 'label', 'type', 'required', 'unified_search', 'custom');
|
|
$key = in_array($_REQUEST['column'], $valid_columns) ? $_REQUEST['column'] : 'name';
|
|
$val = array('key'=>$key, 'direction'=>$direction);
|
|
$current_user->setPreference('fieldsTableColumn', getJSONobj()->encode($val), 0, 'ModuleBuilder');
|
|
}
|
|
}
|
|
}
|