Add TPL files
This commit is contained in:
70
modules/ModuleBuilder/tpls/MBModule/Class.tpl
Executable file
70
modules/ModuleBuilder/tpls/MBModule/Class.tpl
Executable file
@@ -0,0 +1,70 @@
|
||||
<?PHP
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* 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. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
/**
|
||||
* THIS CLASS IS GENERATED BY MODULE BUILDER
|
||||
* PLEASE DO NOT CHANGE THIS CLASS
|
||||
* PLACE ANY CUSTOMIZATIONS IN {{$class.name}}
|
||||
*/
|
||||
|
||||
{{foreach from=$class.requires item='require'}}
|
||||
require_once('{{$require}}');
|
||||
{{/foreach}}
|
||||
|
||||
class {{$class.name}}_sugar extends {{$class.extends}} {
|
||||
var $new_schema = true;
|
||||
var $module_dir = '{{$class.name}}';
|
||||
var $object_name = '{{$class.name}}';
|
||||
var $table_name = '{{$class.table_name}}';
|
||||
var $importable = {{if $class.importable}}true{{else}}false{{/if}};
|
||||
var $disable_row_level_security = true ; // to ensure that modules created and deployed under CE will continue to function under team security if the instance is upgraded to PRO
|
||||
{{foreach from=$class.fields key='field' item='def'}}
|
||||
var ${{$field}};
|
||||
{{/foreach}}
|
||||
function {{$class.name}}_sugar(){
|
||||
parent::{{$class.extends}}();
|
||||
}
|
||||
|
||||
{{if $class.acl}}
|
||||
function bean_implements($interface){
|
||||
switch($interface){
|
||||
case 'ACL': return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
{{/if}}
|
||||
|
||||
}
|
||||
?>
|
||||
47
modules/ModuleBuilder/tpls/MBModule/DeveloperClass.tpl
Executable file
47
modules/ModuleBuilder/tpls/MBModule/DeveloperClass.tpl
Executable file
@@ -0,0 +1,47 @@
|
||||
<?PHP
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* 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. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
/**
|
||||
* THIS CLASS IS FOR DEVELOPERS TO MAKE CUSTOMIZATIONS IN
|
||||
*/
|
||||
require_once('modules/{{$class.name}}/{{$class.name}}_sugar.php');
|
||||
class {{$class.name}} extends {{$class.name}}_sugar {
|
||||
|
||||
function {{$class.name}}(){
|
||||
parent::{{$class.name}}_sugar();
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
43
modules/ModuleBuilder/tpls/MBModule/Menu.tpl
Executable file
43
modules/ModuleBuilder/tpls/MBModule/Menu.tpl
Executable file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* 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. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
|
||||
global $mod_strings, $app_strings, $sugar_config;
|
||||
|
||||
if(ACLController::checkAccess('{$moduleName}', 'edit', true))$module_menu[]=Array("index.php?module={$moduleName}&action=EditView&return_module={$moduleName}&return_action=DetailView", $mod_strings['LNK_NEW_RECORD'],"Create{$moduleName}", '{$moduleName}');
|
||||
{if $showvCard}if(ACLController::checkAccess('{$moduleName}', 'edit', true))$module_menu[]=Array("index.php?module={$moduleName}&action=ImportVCard", $mod_strings['LNK_IMPORT_VCARD'],"Create{$moduleName}", '{$moduleName}');{/if}
|
||||
if(ACLController::checkAccess('{$moduleName}', 'list', true))$module_menu[]=Array("index.php?module={$moduleName}&action=index&return_module={$moduleName}&return_action=DetailView", $mod_strings['LNK_LIST'],"{$moduleName}", '{$moduleName}');
|
||||
{if $showimport}if(ACLController::checkAccess('{$moduleName}', 'import', true))$module_menu[]=Array("index.php?module=Import&action=Step1&import_module={$moduleName}&return_module={$moduleName}&return_action=index", $app_strings['LBL_IMPORT'],"Import", '{$moduleName}');{/if}
|
||||
40
modules/ModuleBuilder/tpls/MBModule/Studio.tpl
Executable file
40
modules/ModuleBuilder/tpls/MBModule/Studio.tpl
Executable file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* 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. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
/**
|
||||
* This file adds support for studio
|
||||
*/
|
||||
|
||||
?>
|
||||
159
modules/ModuleBuilder/tpls/MBModule/dropdown.tpl
Executable file
159
modules/ModuleBuilder/tpls/MBModule/dropdown.tpl
Executable file
@@ -0,0 +1,159 @@
|
||||
{*
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* 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. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
*}
|
||||
<div>
|
||||
<link rel="stylesheet" type="text/css" href="modules/ModuleBuilder/tpls/ListEditor.css"></link>
|
||||
<link rel="stylesheet" type="text/css" href="modules/ModuleBuilder/tpls/MBModule/dropdown.css"></link>
|
||||
<form name='dropdown_form'>
|
||||
<input type='hidden' name='module' value='ModuleBuilder'>
|
||||
<input type='hidden' name='action' value='{$action}'>
|
||||
<input type='hidden' name='to_pdf' value='true'>
|
||||
<input type='hidden' name='view_module' value='{$module->name}'>
|
||||
<input type='hidden' name='view_package' value='{$package_name}'>
|
||||
<input type='hidden' id='list_value' name='list_value' value=''>
|
||||
{if ($refreshTree)}
|
||||
<input type='hidden' name='refreshTree' value='1'>
|
||||
{/if}
|
||||
<table>
|
||||
<tr>
|
||||
<td colspan='3'>
|
||||
<input id = "saveBtn" type='button' class='button' onclick='SimpleList.handleSave()' value='{$APP.LBL_SAVE_BUTTON_LABEL}'>
|
||||
<input type='button' class='button' onclick='SimpleList.undo()' value='{$MOD.LBL_BTN_UNDO}'>
|
||||
<input type='button' class='button' onclick='SimpleList.redo()' value='{$MOD.LBL_BTN_REDO}'>
|
||||
<input type='button' class='button' name='cancel' value='{$MOD.LBL_BTN_CANCEL}' onclick='ModuleBuilder.tabPanel.get("activeTab").close()'>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2'>
|
||||
<hr/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<span class='mbLBLL'>{$MOD.LBL_DROPDOWN_TITLE_NAME}: </span>
|
||||
{if $name }
|
||||
<input type='hidden' id='dropdown_name' name='dropdown_name' value='{$dropdown_name}'>{$dropdown_name}
|
||||
{else}
|
||||
<input type='text' id='dropdown_name' name='dropdown_name' value={$prepopulated_name}>
|
||||
{/if}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='mbLBLL'>
|
||||
{$MOD.LBL_DROPDOWN_LANGUAGE}:
|
||||
{html_options name='dropdown_lang' options=$available_languages selected=$selected_lang onchange='this.form.action.value="dropdown";ModuleBuilder.handleSave("dropdown_form")'}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style='padding-top:10px;' class='mbLBLL'>{$MOD.LBL_DROPDOWN_ITEMS}:</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>{$MOD.LBL_DROPDOWN_ITEM_NAME}</b><span class='fieldValue'>[{$MOD.LBL_DROPDOWN_ITEM_LABEL}]<span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='3'>
|
||||
<ul id="ul1" class="listContainer">
|
||||
{foreach from=$options key='name' item='val'}
|
||||
{if (!isset($val) || $val =='')}{assign var='name' value=$MOD.LBL_BLANK}{/if}
|
||||
<li class="draggable" id="{$name}" >
|
||||
<table width='100%'>
|
||||
<tr>
|
||||
<td>
|
||||
<b>{$name}</b>
|
||||
<input id='value_{$name}' value='{$name}' type = 'hidden'>
|
||||
<span class='fieldValue' id='span_{$name}'>
|
||||
{if (!isset($val) || $val =='')}[{$MOD.LBL_BLANK}]{else}[{$val}]{/if}
|
||||
</span>
|
||||
<span class='fieldValue' id='span_edit_{$name}' style='display:none'>
|
||||
<input type='text' id='input_{$name}' value="{$val|escape}" onBlur='SimpleList.setDropDownValue("{$name}", this.value, true)' >
|
||||
</span>
|
||||
</td>
|
||||
<td align='right'>
|
||||
<a href='javascript:void(0)' onclick='SimpleList.editDropDownValue("{$name}", true)'>
|
||||
{$editImage}</a>
|
||||
|
||||
<a href='javascript:void(0)' onclick='SimpleList.deleteDropDownValue("{$name}", true)'>
|
||||
{$deleteImage}</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='3'>
|
||||
<table width='100%'>
|
||||
<tr>
|
||||
<td class='mbLBLL'>{$MOD.LBL_DROPDOWN_ITEM_NAME}:</td><td class='mbLBLL'>{$MOD.LBL_DROPDOWN_ITEM_LABEL}:</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type='text' id='drop_name' name='drop_name'></td>
|
||||
<td><input type='text' id='drop_value' name='drop_value'></td>
|
||||
</tr>
|
||||
<tr><td><input type='button' id='dropdownaddbtn' value='{$APP.LBL_ADD_BUTTON}' class='button'></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='3'>
|
||||
<input type='button' class='button' value='{$MOD.LBL_BTN_SORT_ASCENDING}' onclick='SimpleList.sortAscending()'>
|
||||
<input type='button' class='button' value='{$MOD.LBL_BTN_SORT_DESCENDING}' onclick='SimpleList.sortDescending()'>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
{literal}
|
||||
<script>
|
||||
addForm('dropdown_form');
|
||||
addToValidate('dropdown_form', 'dropdown_name', 'DBName', false, SUGAR.language.get("ModuleBuilder", "LBL_JS_VALIDATE_NAME"));
|
||||
addToValidate('dropdown_form', 'drop_value', 'varchar', false, SUGAR.language.get("ModuleBuilder", "LBL_JS_VALIDATE_LABEL"));
|
||||
eval({/literal}{$ul_list}{literal});
|
||||
SimpleList.ul_list = list;
|
||||
SimpleList.init({/literal}'{$editImage}'{literal}, {/literal}'{$deleteImage}'{literal});
|
||||
ModuleBuilder.helpSetup('dropdowns','editdropdown');
|
||||
|
||||
var addListenerFields = ['drop_name','drop_value' ]
|
||||
YAHOO.util.Event.addListener(addListenerFields,"keydown", function(e){
|
||||
if (e.keyCode == 13) {
|
||||
YAHOO.util.Event.stopEvent(e);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
{/literal}
|
||||
</div>
|
||||
|
||||
71
modules/ModuleBuilder/tpls/MBModule/dropdowns.tpl
Executable file
71
modules/ModuleBuilder/tpls/MBModule/dropdowns.tpl
Executable file
@@ -0,0 +1,71 @@
|
||||
{*
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* 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. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
*}
|
||||
|
||||
<div id='dropdowns'>
|
||||
<input type='button' name='adddropdownbtn'
|
||||
value='{$LBL_BTN_ADDDROPDOWN}' class='button'
|
||||
onclick='ModuleBuilder.getContent("module=ModuleBuilder&action=dropdown&refreshTree=1");'>
|
||||
|
||||
<hr>
|
||||
<table width='100%'>
|
||||
<colgroup span='3' width='33%'>
|
||||
|
||||
|
||||
<tr>
|
||||
{counter name='items' assign='items' start=0} {foreach from=$dropdowns
|
||||
key='name' item='def'} {if $items % 3 == 0 && $items != 0}
|
||||
</tr>
|
||||
<tr>
|
||||
{/if}
|
||||
<td><a class='mbLBLL' href='javascript:void(0)'
|
||||
onclick='ModuleBuilder.getContent("module=ModuleBuilder&action=dropdown&dropdown_name={$name}")'>{$name}</a></td>
|
||||
{counter name='items'} {/foreach} {if $items == 0}
|
||||
<td class='mbLBLL'>{$mod_strings.LBL_NONE}</td>
|
||||
{elseif $items % 3 == 1}
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
{elseif $items % 3 == 2}
|
||||
<td> </td>
|
||||
{/if}
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<script>
|
||||
ModuleBuilder.helpRegisterByID('dropdowns', 'input');
|
||||
ModuleBuilder.helpSetup('dropdowns','default');
|
||||
</script> {include
|
||||
file='modules/ModuleBuilder/tpls/assistantJavascript.tpl'}
|
||||
120
modules/ModuleBuilder/tpls/MBModule/field.tpl
Executable file
120
modules/ModuleBuilder/tpls/MBModule/field.tpl
Executable file
@@ -0,0 +1,120 @@
|
||||
{*
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* 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. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
*}
|
||||
<div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000"></div>
|
||||
{literal}
|
||||
<script>
|
||||
addForm('popup_form');
|
||||
</script>
|
||||
{/literal}
|
||||
|
||||
<form name='popup_form' id='popup_form_id' onsubmit='return false;'>
|
||||
<input type='hidden' name='module' value='ModuleBuilder'>
|
||||
<input type='hidden' name='action' value='{$action}'>
|
||||
<input type='hidden' name='new_dropdown' value=''>
|
||||
<input type='hidden' name='to_pdf' value='true'>
|
||||
<input type='hidden' name='view_module' value='{$module->name}'>
|
||||
{if isset($package->name)}
|
||||
<input type='hidden' name='view_package' value='{$package->name}'>
|
||||
{/if}
|
||||
<input type='hidden' name='is_update' value='true'>
|
||||
{if $hideLevel < 5}
|
||||
|
||||
<input type='button' class='button' name='fsavebtn' value='{$mod_strings.LBL_BTN_SAVE}' onclick='{literal}if(validate_type_selection() && check_form("popup_form")){ {/literal}{$preSave} {literal}ModuleBuilder.submitForm("popup_form_id"); }{/literal}'>
|
||||
<input type='button' name='cancelbtn' value='{$mod_strings.LBL_BTN_CANCEL}' onclick='ModuleBuilder.tabPanel.removeTab(ModuleBuilder.findTabById("east"));' class='button'>
|
||||
{if !empty($vardef.name)}
|
||||
{if $hideLevel < 3}
|
||||
{literal}
|
||||
<input type='button' class='button' name='fdeletebtn' value='{/literal}{$mod_strings.LBL_BTN_DELETE}{literal}' onclick='if(confirm("{/literal}{$mod_strings.LBL_CONFIRM_FIELD_DELETE}{literal}")){document.popup_form.action.value="DeleteField";ModuleBuilder.submitForm("popup_form_id");}'>
|
||||
{/literal}
|
||||
{/if}
|
||||
{if !$no_duplicate}
|
||||
{literal}
|
||||
<input type='button' class='button' name='fclonebtn' value='{/literal}{$mod_strings.LBL_BTN_CLONE}{literal}' onclick='document.popup_form.action.value="CloneField";ModuleBuilder.submitForm("popup_form_id");'>
|
||||
{/literal}
|
||||
{/if}
|
||||
{/if}
|
||||
|
||||
{else}
|
||||
{literal}
|
||||
<input type='button' class='button' name='lsavebtn' value='{/literal}{$mod_strings.LBL_BTN_SAVE}{literal}' onclick='if(check_form("popup_form")){this.form.action.value = "{/literal}{$action}{literal}";ModuleBuilder.submitForm("popup_form_id")};'>
|
||||
{/literal}
|
||||
{literal}
|
||||
<input type='button' class='button' name='fclonebtn' value='{/literal}{$mod_strings.LBL_BTN_CLONE}{literal}' onclick='document.popup_form.action.value="CloneField";ModuleBuilder.submitForm("popup_form_id");'>
|
||||
{/literal}
|
||||
{literal}
|
||||
<input type='button' class='button' name='cancel' value='{/literal}{$mod_strings.LBL_BTN_CANCEL}{literal}' onclick='ModuleBuilder.tabPanel.get("activeTab").close()'>
|
||||
{/literal}
|
||||
|
||||
{/if}
|
||||
<hr>
|
||||
|
||||
<table width="400px" >
|
||||
<tr>
|
||||
<td class="mbLBL" style="width:92px;">{$MOD.COLUMN_TITLE_DATA_TYPE}:</td>
|
||||
<td >{if empty($vardef.name) && $isClone == 0}
|
||||
{html_options name="type" id="type" options=$field_types selected=$vardef.type onchange='ModuleBuilder.moduleLoadField("", this.options[this.selectedIndex].value);'}
|
||||
{sugar_help text=$mod_strings.LBL_POPHELP_FIELD_DATA_TYPE FIXX=250 FIXY=80}
|
||||
{else}
|
||||
{$field_types[$vardef.type]}
|
||||
{/if}
|
||||
{if empty($field_types[$vardef.type]) && !empty($vardef.type)}({$vardef.type}){/if}
|
||||
<input type='hidden' name='type' value={$vardef.type}>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
{$fieldLayout}
|
||||
|
||||
</form>
|
||||
<script>
|
||||
{literal}
|
||||
function validate_type_selection(){
|
||||
var typeSel = document.getElementById('type');
|
||||
if(typeSel && typeSel.options){
|
||||
if(typeSel.options[typeSel.selectedIndex].value == ''){
|
||||
alert('{/literal}{$MOD.ERR_SELECT_FIELD_TYPE}{literal}');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
if (document.getElementById("customTypeValidate")){
|
||||
return document.getElementById("customTypeValidate").onchange();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
{/literal}
|
||||
ModuleBuilder.helpSetup('fieldsEditor','{$help_group}');
|
||||
</script>
|
||||
|
||||
79
modules/ModuleBuilder/tpls/MBModule/fields.tpl
Executable file
79
modules/ModuleBuilder/tpls/MBModule/fields.tpl
Executable file
@@ -0,0 +1,79 @@
|
||||
{*
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* 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. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
*}
|
||||
<div id='studiofields'>
|
||||
<input type='button' name='addfieldbtn' value='{$mod_strings.LBL_BTN_ADDFIELD}' class='button' onclick='ModuleBuilder.moduleLoadField("");'>
|
||||
{if $editLabelsMb=='1'}
|
||||
<input type='button' name='addfieldbtn' value='{$mod_strings.LBL_BTN_EDLABELS}' class='button' onclick='ModuleBuilder.moduleLoadLabels("mb");'>
|
||||
{else}
|
||||
<input type='button' name='addfieldbtn' value='{$mod_strings.LBL_BTN_EDLABELS}' class='button' onclick='ModuleBuilder.moduleLoadLabels("studio");'>
|
||||
{/if}
|
||||
{foreach from=$module->mbvardefs->vardefs.fields key='group' item='fields'}
|
||||
<hr>
|
||||
<h2>{$title[$group]}</h2>
|
||||
<table width='100%'>
|
||||
<colgroup span='3' width='33%'>
|
||||
<tr>
|
||||
{counter name='items' assign='items' start=0}
|
||||
{foreach from=$fields key='name' item='def'}
|
||||
{if $items % 3 == 0 && $items != 0}
|
||||
</tr><tr>
|
||||
{/if}
|
||||
<td>
|
||||
<a class='mbLBLL' href='javascript:void(0)' onclick='ModuleBuilder.moduleLoadField("{$name}")'>{$name}</a>
|
||||
</td>
|
||||
{counter name='items'}
|
||||
{/foreach}
|
||||
{if $items == 0}
|
||||
<td class='mbLBLL'>{$mod_strings.LBL_NONE}</td>
|
||||
{elseif $items % 3 == 1}
|
||||
<td> </td><td> </td>
|
||||
{elseif $items % 3 == 2}
|
||||
<td> </td>
|
||||
{/if}
|
||||
</tr>
|
||||
</table>
|
||||
{/foreach}
|
||||
<script>
|
||||
ModuleBuilder.module = '{$module->name}';
|
||||
ModuleBuilder.MBpackage = '{$package->name}';
|
||||
ModuleBuilder.helpRegisterByID('studiofields', 'input');
|
||||
{if $package->name != 'studio'}
|
||||
ModuleBuilder.helpSetup('fieldsEditor','mbDefault');
|
||||
{else}
|
||||
ModuleBuilder.helpSetup('fieldsEditor','default');
|
||||
{/if}
|
||||
</script>
|
||||
0
modules/ModuleBuilder/tpls/MBModule/form.tpl
Executable file
0
modules/ModuleBuilder/tpls/MBModule/form.tpl
Executable file
38
modules/ModuleBuilder/tpls/MBModule/language.tpl
Executable file
38
modules/ModuleBuilder/tpls/MBModule/language.tpl
Executable file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* 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. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
$mod_strings = array(
|
||||
|
||||
);
|
||||
0
modules/ModuleBuilder/tpls/MBModule/main.tpl
Executable file
0
modules/ModuleBuilder/tpls/MBModule/main.tpl
Executable file
128
modules/ModuleBuilder/tpls/MBModule/module.tpl
Executable file
128
modules/ModuleBuilder/tpls/MBModule/module.tpl
Executable file
@@ -0,0 +1,128 @@
|
||||
{*
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* 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. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
*}
|
||||
<link rel="stylesheet" type="text/css" href="modules/ModuleBuilder/tpls/MB.css" />
|
||||
<form name='CreateModule'>
|
||||
<input type='hidden' name='module' value='ModuleBuilder'>
|
||||
<input type='hidden' name='action' value='SaveModule'>
|
||||
<input type='hidden' name='package' value='{$package->name}'>
|
||||
<input type='hidden' name='original_name' value='{$module->name}'>
|
||||
<input type='hidden' name='duplicate' value='0'>
|
||||
<input type='hidden' name='to_pdf' value='1'>
|
||||
<table class='mbTable' >
|
||||
<tr><td></td><td colspan=4><input type='button' name='savebtn' value='{$mod_strings.LBL_BTN_SAVE}' class='button' onclick="ModuleBuilder.handleSave('CreateModule');">
|
||||
{if !empty($module->name)}
|
||||
<input type='button' name='duplicatebtn' value='{$mod_strings.LBL_BTN_DUPLICATE}' class='button' onclick="document.CreateModule.duplicate.value=1;ModuleBuilder.handleSave('CreateModule');">
|
||||
<input type='button' name='viewfieldsbtn' value='{$mod_strings.LBL_BTN_VIEW_FIELDS}' class='button' onclick="ModuleBuilder.handleSave('CreateModule', ModuleBuilder.moduleViewFields);">
|
||||
<input type='button' name='viewrelsbtn' value='{$mod_strings.LBL_BTN_VIEW_RELATIONSHIPS}' class='button' onclick="ModuleBuilder.handleSave('CreateModule', ModuleBuilder.moduleViewRelationships);">
|
||||
<input type='button' name='viewlayoutsbtn' value='{$mod_strings.LBL_BTN_VIEW_LAYOUTS}' class='button' onclick="ModuleBuilder.handleSave('CreateModule', ModuleBuilder.moduleViewLayouts);">
|
||||
<input type='button' name='deletebtn' value='{$mod_strings.LBL_BTN_DELETE}' class='button' onclick="ModuleBuilder.moduleDelete('{$package->name}', '{$module->name}');">{/if}</td></tr>
|
||||
<tr>
|
||||
<td height='100%'> </td><td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr><td class='mbLBL'><b>{$mod_strings.LBL_PACKAGE}</b></td><td colspan='5'>{$package->name}</td></tr>
|
||||
<tr><td class='mbLBL'><font color="#ff0000"> * </font><b>{$mod_strings.LBL_MODULE_NAME}</b></td><td colspan='5'><input type='text' name='name' value='{$module->name}' size=50></td></tr>
|
||||
<tr><td class='mbLBL'><font color="#ff0000"> * </font><b>{$mod_strings.LBL_LABEL}</b></td><td colspan='5'><input type='text' name='label' value='{$module->config.label}' size=50></td></tr>
|
||||
<tr>
|
||||
<tr>
|
||||
<td class='mbLBL' width='5%' nowrap>{sugar_translate label='LBL_MB_IMPORTABLE' module='ModuleBuilder'}:</td>
|
||||
<td> <input type='checkbox' name='importable' value=1 {if !empty($module->config.importable)}checked{/if}></td>
|
||||
</tr>
|
||||
{counter name='items' assign='items' start=0}
|
||||
{foreach from=$module->implementable key='name' item='label'}
|
||||
</tr><tr>
|
||||
<td class='mbLBL' width='5%' nowrap>{$label}:</td>
|
||||
<td > <input type='checkbox' name='{$name}' value=1 {if !empty($module->config[$name])}checked{/if}></td>
|
||||
{counter name='items'}
|
||||
{/foreach}
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='mbLBL'><font color="#ff0000"> * </font><b>{$mod_strings.LBL_TYPE}</b></td>
|
||||
{counter name='items' assign='items' start=0}
|
||||
<td>
|
||||
<table>
|
||||
<tr{if empty($module->name)} id="factory_modules"{/if}>
|
||||
{if empty($module->name)}<input type='hidden' name='type'>{/if}
|
||||
{foreach from=$types key='type' item='name'}
|
||||
{assign var='imgurl' value=$type|cat:'_32'}
|
||||
{if empty($module->name) || $type != 'basic' || count($module->mbvardefs->templates) == 1}
|
||||
{if $items % 6 == 0 && $items != 0}
|
||||
</tr>
|
||||
<tr>
|
||||
{/if}
|
||||
<td>
|
||||
{if empty($module->name)}
|
||||
<td align='center'>
|
||||
<table id='type_{$type}' onclick='ModuleBuilder.buttonDown(this,"{$type}", "type"); ModuleBuilder.buttonToForm("CreateModule", "type", "type");' class='wizardButton' onmousedown='return false;' onmouseout='ModuleBuilder.buttonOut(this,"{$type}", "type");'>
|
||||
<tr>
|
||||
<td align='center'>{sugar_image name=$type width=48 height=48}</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class='studiolink' href="javascript:void(0)" onclick='ModuleBuilder.buttonDown(this,"{$type}", "type"); ModuleBuilder.buttonToForm("CreateModule", "type", "type");'>{$name}</a>
|
||||
<script>ModuleBuilder.buttonAdd('type_{$type}', '{$type}', 'type');</script>
|
||||
</td>
|
||||
{else}
|
||||
<td align='center'>{sugar_image name=$type width=48 height=48}<br>
|
||||
{$name}
|
||||
{/if}
|
||||
</td>
|
||||
{/if}
|
||||
{counter name='items'}
|
||||
{/foreach}
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height='100%'> </td><td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
{literal}
|
||||
<script>
|
||||
addForm('CreateModule');
|
||||
addToValidate('CreateModule', 'name', 'DBName', true, '{/literal}{$mod_strings.LBL_JS_VALIDATE_NAME}{literal}');
|
||||
addToValidate('CreateModule', 'label', 'varchar', true, '{/literal}{$mod_strings.LBL_JS_VALIDATE_LABEL}{literal}');
|
||||
addToValidate('CreateModule', 'type', 'varchar', true, '{/literal}{$mod_strings.LBL_JS_VALIDATE_TYPE}{literal}');
|
||||
ModuleBuilder.helpRegister('CreateModule');
|
||||
if(document.getElementById('factory_modules'))
|
||||
ModuleBuilder.helpRegisterByID('factory_modules', 'table');
|
||||
ModuleBuilder.helpSetup({/literal}'{$module->help.group}','{$module->help.default}'{literal});
|
||||
ModuleBuilder.MBpackage = '{/literal}{$module->package}{literal}';
|
||||
ModuleBuilder.module = '{/literal}{$module->name}{literal}';
|
||||
</script>
|
||||
{/literal}
|
||||
{include file='modules/ModuleBuilder/tpls/assistantJavascript.tpl'}
|
||||
46
modules/ModuleBuilder/tpls/MBModule/vardef.tpl
Executable file
46
modules/ModuleBuilder/tpls/MBModule/vardef.tpl
Executable file
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* 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. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
$dictionary['{{$class.name}}'] = array(
|
||||
'table'=>'{{$class.table_name}}',
|
||||
'audited'=>{{$class.audited}},
|
||||
'fields'=>{{$class.fields_string}},
|
||||
'relationships'=>{{$class.relationships}},
|
||||
'optimistic_locking'=>true,
|
||||
);
|
||||
if (!class_exists('VardefManager')){
|
||||
require_once('include/SugarObjects/VardefManager.php');
|
||||
}
|
||||
VardefManager::createVardef('{{$class.name}}','{{$class.name}}', array({{$class.templates}}));
|
||||
Reference in New Issue
Block a user