mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
340 lines
18 KiB
PHP
Executable File
340 lines
18 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".
|
|
*/
|
|
|
|
require_once('modules/ModuleBuilder/MB/AjaxCompose.php') ;
|
|
require_once('modules/ModuleBuilder/Module/StudioModuleFactory.php') ;
|
|
require_once('include/MVC/View/SugarView.php') ;
|
|
|
|
#[\AllowDynamicProperties]
|
|
class ModuleBuilderViewWizard extends SugarView
|
|
{
|
|
private $view = null ; // the wizard view to display
|
|
private $actions ;
|
|
private $buttons ;
|
|
private $question ;
|
|
private $title ;
|
|
private $help ;
|
|
|
|
private $editModule ;
|
|
|
|
public function __construct()
|
|
{
|
|
if (isset($_REQUEST [ 'view' ])) {
|
|
$this->view = $_REQUEST [ 'view' ] ;
|
|
}
|
|
|
|
$this->editModule = (! empty($_REQUEST [ 'view_module' ])) ? $_REQUEST [ 'view_module' ] : null ;
|
|
$this->buttons = array(); // initialize so that modules without subpanels for example don't result in this being unset and causing problems in the smarty->assign
|
|
}
|
|
|
|
/**
|
|
* @see SugarView::_getModuleTitleParams()
|
|
*/
|
|
protected function _getModuleTitleParams($browserTitle = false)
|
|
{
|
|
global $mod_strings;
|
|
|
|
return array(
|
|
translate('LBL_MODULE_NAME', 'Administration'),
|
|
ModuleBuilderController::getModuleTitle(),
|
|
);
|
|
}
|
|
|
|
public function display()
|
|
{
|
|
$this->ajax = new AjaxCompose() ;
|
|
$smarty = new Sugar_Smarty() ;
|
|
|
|
if (isset($_REQUEST [ 'MB' ])) {
|
|
$this->processMB($this->ajax) ;
|
|
} else {
|
|
$this->processStudio($this->ajax) ;
|
|
}
|
|
|
|
$smarty->assign('buttons', $this->buttons) ;
|
|
$smarty->assign('image_path', $GLOBALS [ 'image_path' ]) ;
|
|
$smarty->assign("title", $this->title) ;
|
|
$smarty->assign("question", $this->question) ;
|
|
$smarty->assign("defaultHelp", $this->help) ;
|
|
$smarty->assign("actions", $this->actions) ;
|
|
|
|
$this->ajax->addSection('center', $this->title, $smarty->fetch('modules/ModuleBuilder/tpls/wizard.tpl')) ;
|
|
echo $this->ajax->getJavascript() ;
|
|
}
|
|
|
|
public function processStudio(
|
|
$ajax
|
|
) {
|
|
$this->ajax->addCrumb(translate('LBL_STUDIO'), 'ModuleBuilder.main("studio")') ;
|
|
|
|
if (! isset($this->editModule)) {
|
|
//Studio Select Module Page
|
|
$this->generateStudioModuleButtons() ;
|
|
$this->question = translate('LBL_QUESTION_EDIT') ;
|
|
$this->title = translate('LBL_STUDIO');
|
|
global $current_user;
|
|
if (is_admin($current_user)) {
|
|
$this->actions = "<input class=\"button\" type=\"button\" id=\"exportBtn\" name=\"exportBtn\" onclick=\"ModuleBuilder.getContent('module=ModuleBuilder&action=exportcustomizations');\" value=\"" . translate('LBL_BTN_EXPORT') . '">' ;
|
|
}
|
|
|
|
$this->help = 'studioHelp' ;
|
|
} else {
|
|
$module = StudioModuleFactory::getStudioModule($this->editModule) ;
|
|
$this->ajax->addCrumb($module->name, !empty($this->view) ? 'ModuleBuilder.getContent("module=ModuleBuilder&action=wizard&view_module=' . $this->editModule . '")' : '') ;
|
|
switch ($this->view) {
|
|
case 'layouts':
|
|
//Studio Select Layout page
|
|
$this->buttons = $module->getLayouts() ;
|
|
$this->title = $module->name . " " . translate('LBL_LAYOUTS') ;
|
|
$this->question = translate('LBL_QUESTION_LAYOUT') ;
|
|
$this->help = 'layoutsHelp' ;
|
|
$this->ajax->addCrumb(translate('LBL_LAYOUTS'), '') ;
|
|
break;
|
|
|
|
|
|
case 'subpanels':
|
|
//Studio Select Subpanel page.
|
|
$this->buttons = $module->getSubpanels() ;
|
|
$this->title = $module->name . " " . translate('LBL_SUBPANELS') ;
|
|
$this->question = translate('LBL_QUESTION_SUBPANEL') ;
|
|
$this->ajax->addCrumb(translate('LBL_SUBPANELS'), '') ;
|
|
$this->help = 'subpanelHelp' ;
|
|
break;
|
|
|
|
case 'search':
|
|
//Studio Select Search Layout page.
|
|
$this->buttons = $module->getSearch() ;
|
|
$this->title = $module->name . " " . translate('LBL_FILTER');
|
|
$this->question = translate('LBL_QUESTION_SEARCH') ;
|
|
$this->ajax->addCrumb(translate('LBL_LAYOUTS'), 'ModuleBuilder.getContent("module=ModuleBuilder&action=wizard&view=layouts&view_module=' . $this->editModule . '")') ;
|
|
$this->ajax->addCrumb(translate('LBL_FILTER'), '') ;
|
|
$this->help = 'searchHelp' ;
|
|
break;
|
|
|
|
case 'dashlet':
|
|
$this->generateStudioDashletButtons();
|
|
$this->title = $this->editModule ." " .translate('LBL_DASHLET');
|
|
$this->question = translate('LBL_QUESTION_DASHLET') ;
|
|
$this->ajax->addCrumb(translate('LBL_LAYOUTS'), 'ModuleBuilder.getContent("module=ModuleBuilder&action=wizard&view=layouts&view_module=' . $this->editModule . '")') ;
|
|
$this->ajax->addCrumb(translate('LBL_DASHLET'), '') ;
|
|
$this->help = 'dashletHelp' ;
|
|
break;
|
|
|
|
case 'popup':
|
|
$this->generateStudioPopupButtons();
|
|
$this->title = $this->editModule ." " .translate('LBL_POPUP');
|
|
$this->question = translate('LBL_QUESTION_POPUP') ;
|
|
$this->ajax->addCrumb(translate('LBL_LAYOUTS'), 'ModuleBuilder.getContent("module=ModuleBuilder&action=wizard&view=layouts&view_module=' . $this->editModule . '")') ;
|
|
$this->ajax->addCrumb(translate('LBL_POPUP'), '') ;
|
|
$this->help = 'popupHelp' ;
|
|
break;
|
|
default:
|
|
//Studio Edit Module Page
|
|
$this->buttons = $module->getModule() ;
|
|
$this->question = translate('LBL_QUESTION_MODULE') ;
|
|
$this->title = translate('LBL_EDIT') . " " . $module->name ;
|
|
$this->help = 'moduleHelp' ;
|
|
global $current_user;
|
|
if (is_admin($current_user)) {
|
|
$this->actions = "<input class=\"button\" type=\"button\" id=\"resetModule\" name=\"resetModule\" "
|
|
. "onclick=\"ModuleBuilder.getContent('module=ModuleBuilder&action=resetmodule&view_module=$this->editModule');\" value=\""
|
|
. translate('LBL_RESET_MODULE') . '">' ;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public function processMB(
|
|
$ajax
|
|
) {
|
|
if (! isset($_REQUEST [ 'view_package' ])) {
|
|
sugar_die("no ModuleBuilder package set") ;
|
|
}
|
|
|
|
$this->editModule = $_REQUEST [ 'view_module' ] ;
|
|
$this->package = $_REQUEST [ 'view_package' ] ;
|
|
|
|
$ajax->addCrumb(translate('LBL_MODULEBUILDER', 'ModuleBuilder'), 'ModuleBuilder.main("mb")') ;
|
|
$ajax->addCrumb($this->package, 'ModuleBuilder.getContent("module=ModuleBuilder&action=package&view_package=' . $this->package . '")') ;
|
|
$ajax->addCrumb($this->editModule, 'ModuleBuilder.getContent("module=ModuleBuilder&action=module&view_module=' . $this->editModule . '&view_package=' . $this->package . '")') ;
|
|
|
|
switch ($this->view) {
|
|
case 'search':
|
|
//MB Select Search Layout page.
|
|
$this->generateMBSearchButtons() ;
|
|
$this->title = $this->editModule . " " . translate('LBL_SEARCH_BUTTON') ;
|
|
$this->question = translate('LBL_QUESTION_SEARCH') ;
|
|
$ajax->addCrumb(translate('LBL_LAYOUTS'), 'ModuleBuilder.getContent("module=ModuleBuilder&MB=true&action=wizard&view_module=' . $this->editModule . '&view_package=' . $this->package . '")') ;
|
|
$ajax->addCrumb(translate('LBL_SEARCH_FORMS'), '') ;
|
|
$this->help = "searchHelp" ;
|
|
break;
|
|
|
|
case 'subpanel':
|
|
//ModuleBuilder Select Subpanel
|
|
$ajax->addCrumb($this->editModule, 'ModuleBuilder.getContent("module=ModuleBuilder&action=module&view_module=' . $this->editModule . '&view_package=' . $this->package . '")') ;
|
|
$ajax->addCrumb(translate('LBL_SUBPANELS'), '') ;
|
|
$this->question = translate('LBL_QUESTION_SUBPANEL') ;
|
|
$this->help = 'subpanelHelp' ;
|
|
break;
|
|
|
|
case 'dashlet':
|
|
$this->generateMBDashletButtons();
|
|
$this->title = $this->editModule ." " .translate('LBL_DASHLET');
|
|
$this->question = translate('LBL_QUESTION_DASHLET') ;
|
|
$this->ajax->addCrumb(translate('LBL_LAYOUTS'), 'ModuleBuilder.getContent("module=ModuleBuilder&action=wizard&view=layouts&MB=1&view_package='.$this->package.'&view_module=' . $this->editModule . '")') ;
|
|
$this->ajax->addCrumb(translate('LBL_DASHLET'), '') ;
|
|
$this->help = 'dashletHelp' ;
|
|
break;
|
|
|
|
|
|
case 'popup':
|
|
$this->generateMBPopupButtons();
|
|
$this->title = $this->editModule ." " .translate('LBL_POPUP');
|
|
$this->question = translate('LBL_QUESTION_POPUP') ;
|
|
$this->ajax->addCrumb(translate('LBL_LAYOUTS'), 'ModuleBuilder.getContent("module=ModuleBuilder&MB=true&action=wizard&view=layouts&MB=1&view_package='.$this->package.'&view_module=' . $this->editModule . '")') ;
|
|
$this->ajax->addCrumb(translate('LBL_POPUP'), '') ;
|
|
$this->help = 'popupHelp' ;
|
|
break;
|
|
default:
|
|
$ajax->addCrumb(translate('LBL_LAYOUTS'), '') ;
|
|
$this->generateMBViewButtons() ;
|
|
$this->title = $this->editModule . " " . translate('LBL_LAYOUTS') ;
|
|
$this->question = translate('LBL_QUESTION_LAYOUT') ;
|
|
$this->help = "layoutsHelp" ;
|
|
}
|
|
}
|
|
|
|
|
|
public function generateStudioModuleButtons()
|
|
{
|
|
require_once('modules/ModuleBuilder/Module/StudioBrowser.php') ;
|
|
$sb = new StudioBrowser() ;
|
|
$sb->loadModules() ;
|
|
$nodes = $sb->getNodes() ;
|
|
$this->buttons = array( ) ;
|
|
//$GLOBALS['log']->debug(print_r($nodes,true));
|
|
foreach ($nodes as $module) {
|
|
$this->buttons[$module['name']] = [
|
|
'action' => $module['action'],
|
|
'linkId' => 'studiolink_' . $module['module'],
|
|
'icon' => $module['icon']
|
|
];
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public function generateMBViewButtons()
|
|
{
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ] [ 'LBL_EDITVIEW' ] ] =
|
|
array(
|
|
'action' => "module=ModuleBuilder&MB=true&action=editLayout&view=".MB_EDITVIEW."&view_module={$this->editModule}&view_package={$this->package}" ,
|
|
'imageTitle' => 'EditView',
|
|
'help'=>'viewBtnEditView'
|
|
) ;
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ] [ 'LBL_DETAILVIEW' ] ] =
|
|
array(
|
|
'action' => "module=ModuleBuilder&MB=true&action=editLayout&view=".MB_DETAILVIEW."&view_module={$this->editModule}&view_package={$this->package}" ,
|
|
'imageTitle' => 'DetailView',
|
|
'help'=>'viewBtnListView'
|
|
) ;
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ] [ 'LBL_LISTVIEW' ] ] =
|
|
array(
|
|
'action' => "module=ModuleBuilder&MB=true&action=editLayout&view=".MB_LISTVIEW."&view_module={$this->editModule}&view_package={$this->package}" ,
|
|
'imageTitle' => 'ListView',
|
|
'help'=>'viewBtnListView'
|
|
) ;
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ] [ 'LBL_QUICKCREATE' ] ] =
|
|
array(
|
|
'action' => "module=ModuleBuilder&MB=true&action=editLayout&view=".MB_QUICKCREATE."&view_module={$this->editModule}&view_package={$this->package}" ,
|
|
'imageTitle' => 'QuickCreate',
|
|
'help'=>'viewBtnQuickCreate'
|
|
) ;
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ] [ 'LBL_SEARCH_FORMS' ] ] =
|
|
array(
|
|
'action' => "module=ModuleBuilder&MB=true&action=wizard&view=search&view_module={$this->editModule}&view_package={$this->package}" ,
|
|
'imageTitle' => 'BasicSearch' ,
|
|
'help'=> 'searchBtn'
|
|
) ;
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ] [ 'LBL_DASHLET' ] ] =
|
|
array(
|
|
'action' => "module=ModuleBuilder&MB=true&action=wizard&view=dashlet&view_module={$this->editModule}&view_package={$this->package}" ,
|
|
'imageTitle' => 'Dashlet',
|
|
'help'=>'viewBtnDashlet'
|
|
) ;
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ] ['LBL_POPUP'] ] =
|
|
array(
|
|
'imageTitle' => 'Popup',
|
|
'action' => "module=ModuleBuilder&MB=true&action=wizard&view=popup&view_module={$this->editModule}&view_package={$this->package}",
|
|
'help'=>'PopupListViewBtn'
|
|
);
|
|
}
|
|
|
|
public function generateMBDashletButtons()
|
|
{
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ][ 'LBL_DASHLETLISTVIEW' ] ] = array('action'=> "module=ModuleBuilder&MB=true&action=editLayout&view=dashlet&view_module={$this->editModule}&view_package={$this->package}", 'imageTitle'=> $GLOBALS ['mod_strings']['LBL_DASHLETLISTVIEW'], 'imageName'=>'ListView', 'help'=>'DashletListViewBtn');
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ][ 'LBL_DASHLETSEARCHVIEW' ] ] = array('action'=> "module=ModuleBuilder&MB=true&action=editLayout&view=dashletsearch&view_module={$this->editModule}&view_package={$this->package}", 'imageTitle'=> $GLOBALS ['mod_strings']['LBL_DASHLETSEARCHVIEW'], 'imageName'=>'BasicSearch','help'=> 'DashletSearchViewBtn');
|
|
}
|
|
|
|
public function generateMBPopupButtons()
|
|
{
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ][ 'LBL_POPUPLISTVIEW' ] ] = array('action'=> "module=ModuleBuilder&action=editLayout&view=popuplist&view_module={$this->editModule}&view_package={$this->package}", 'imageTitle'=> $GLOBALS ['mod_strings']['LBL_POPUPLISTVIEW'], 'imageName'=>'ListView', 'help'=>'PopupListViewBtn');
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ][ 'LBL_POPUPSEARCH' ] ] = array('action'=> "module=ModuleBuilder&action=editLayout&view=popupsearch&view_module={$this->editModule}&view_package={$this->package}", 'imageTitle'=> $GLOBALS ['mod_strings']['LBL_POPUPSEARCH'], 'imageName'=>'BasicSearch','help'=> 'PopupSearchViewBtn');
|
|
}
|
|
|
|
public function generateStudioDashletButtons()
|
|
{
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ][ 'LBL_DASHLETLISTVIEW' ] ] = array('action'=> "module=ModuleBuilder&action=editLayout&view=dashlet&view_module={$this->editModule}", 'imageTitle'=> $GLOBALS ['mod_strings']['LBL_DASHLETLISTVIEW'], 'imageName'=>'ListView', 'help'=>'DashletListViewBtn');
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ][ 'LBL_DASHLETSEARCHVIEW' ] ] = array('action'=> "module=ModuleBuilder&action=editLayout&view=dashletsearch&view_module={$this->editModule}", 'imageTitle'=> $GLOBALS ['mod_strings']['LBL_DASHLETSEARCHVIEW'], 'imageName'=>'BasicSearch','help'=> 'DashletSearchViewBtn');
|
|
}
|
|
|
|
public function generateStudioPopupButtons()
|
|
{
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ][ 'LBL_POPUPLISTVIEW' ] ] = array('action'=> "module=ModuleBuilder&action=editLayout&view=popuplist&view_module={$this->editModule}", 'imageTitle'=> $GLOBALS ['mod_strings']['LBL_POPUPLISTVIEW'], 'imageName'=>'ListView', 'help'=>'PopupListViewBtn');
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ][ 'LBL_POPUPSEARCH' ] ] = array('action'=> "module=ModuleBuilder&action=editLayout&view=popupsearch&view_module={$this->editModule}", 'imageTitle'=> $GLOBALS ['mod_strings']['LBL_POPUPSEARCH'], 'imageName'=>'BasicSearch','help'=> 'PopupSearchViewBtn');
|
|
}
|
|
|
|
public function generateMBSearchButtons()
|
|
{
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ] [ 'LBL_BASIC' ] ] = array( 'action' => "module=ModuleBuilder&MB=true&action=editLayout&view_module={$this->editModule}&view_package={$this->package}&view=SearchView&searchlayout=basic_search" , 'imageTitle' => $GLOBALS [ 'mod_strings' ] [ 'LBL_BASIC_SEARCH' ] , 'imageName' => 'BasicSearch','help' => "BasicSearchBtn" ) ;
|
|
$this->buttons [ $GLOBALS [ 'mod_strings' ] [ 'LBL_ADVANCED' ] ] = array( 'action' => "module=ModuleBuilder&MB=true&action=editLayout&view_module={$this->editModule}&view_package={$this->package}&view=SearchView&searchlayout=advanced_search" , 'imageTitle' => $GLOBALS [ 'mod_strings' ] [ 'LBL_ADVANCED_SEARCH' ] , 'imageName' => 'AdvancedSearch','help' => "AdvancedSearchBtn" ) ;
|
|
}
|
|
}
|