]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/ModuleBuilder/tpls/editProperty.tpl
Release 6.5.0
[Github/sugarcrm.git] / modules / ModuleBuilder / tpls / editProperty.tpl
1 {*
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 *}
38 <form name="editProperty" id="editProperty" onsubmit='return false;'>
39 <input type='hidden' name='module' value='ModuleBuilder'>
40 <input type='hidden' name='action' value='saveProperty'>
41 <input type='hidden' name='view_module' value='{$view_module}'>
42 {if isset($view_package)}<input type='hidden' name='view_package' value='{$view_package}'>{/if}
43 <input type='hidden' name='subpanel' value='{$subpanel}'>
44 <input type='hidden' name='to_pdf' value='true'>
45
46 {if isset($MB)}
47 <input type='hidden' name='MB' value='{$MB}'>
48 <input type='hidden' name='view_package' value='{$view_package}'>
49 {/if}
50
51 {literal}
52 <script>
53         function saveAction() {
54                 for(var i=0;i<document.editProperty.elements.length;i++)
55                 {
56                         var field = document.editProperty.elements[i];
57                         if (field.className.indexOf('save') != -1 )
58                         {
59                                 if (field.value != 'no_change')
60                                 {
61                                         var property = field.name.substring('editProperty_'.length);
62                                         var id = field.id.substring('editProperty_'.length);
63                                         document.getElementById(id).innerHTML = escape(field.value);
64                                 }
65                         }
66                 }
67         }
68         
69
70         function switchLanguage( language )
71         {
72 {/literal}
73         var request = 'module=ModuleBuilder&action=editProperty&view_module={$editModule}&selected_lang=' + language ;
74         {foreach from=$properties key='key' item='property'}
75                 request += '&id_{$key}={$property.id}&name_{$key}={$property.name}&title_{$key}={$property.title}&label_{$key}={$property.label}' ;
76         {/foreach}
77 {literal}
78         ModuleBuilder.getContent( request ) ;
79     }
80
81 </script>
82 {/literal}
83
84 <table>
85
86         {foreach from=$properties key='key' item='property'}
87         <tr>
88                 <td width = "50%" align='right'>{if isset($property.title)}{$property.title}{else}{$property.name}{/if}:</td>
89                 <td>
90                         <input class='save' type='hidden' name='{$property.name}' id='editProperty_{$id}{$property.id}' value='no_change'>
91                         {if isset($property.hidden)}
92                                 {$property.value}
93                         {else}
94                                 <input onchange='document.getElementById("editProperty_{$id}{$property.id}").value = this.value' value='{$property.value}'>
95                         {/if}
96                 </td>   
97         </tr>
98         {/foreach}
99         <tr>
100                 <td><input class="button" type="Button" name="save" value="{$APP.LBL_SAVE_BUTTON_LABEL}" onclick="saveAction(); ModuleBuilder.submitForm('editProperty'); ModuleBuilder.closeAllTabs();"></td>
101         </tr>
102 </table>
103 </form>
104
105 <script>
106 ModuleBuilder.helpSetup('layoutEditor','property', 'east');
107 </script>
108
109