]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarEmailAddress/templates/forEditView.tpl
Release 6.2.3
[Github/sugarcrm.git] / include / SugarEmailAddress / templates / forEditView.tpl
1 {*
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 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 {php}
39 global $emailInstances; 
40 if (empty($emailInstances))
41         $emailInstances = array(); 
42 if (!isset($emailInstances[$this->_tpl_vars['module']]))
43         $emailInstances[$this->_tpl_vars['module']] = 0;
44 $this->_tpl_vars['index'] = $emailInstances[$this->_tpl_vars['module']];
45 $emailInstances['module']++;
46 {/php}
47 <script type="text/javascript" language="javascript">
48 var emailAddressWidgetLoaded = false;
49 </script>
50 <script type="text/javascript" src="include/SugarEmailAddress/SugarEmailAddress.js"></script>
51 <script type="text/javascript">
52         var module = '{$module}';
53 </script>
54 <table style="border-spacing: 0pt;">
55         <tr>
56                 <td  valign="top" NOWRAP>
57                         <table id="{$module}emailAddressesTable{$index}" class="emailaddresses">
58                                 <tbody id="targetBody"></tbody>
59                                 <tr>
60                                         <td scope="row" NOWRAP>
61                                             <input type=hidden id="{$module}_email_widget_id" name="{$module}_email_widget_id" value="">
62                                                 <input type=hidden id='emailAddressWidget' name='emailAddressWidget' value='1'>
63                                                 <span class="id-ff multiple ownline">
64                                                 <button class='button' type='button' id="{$module}{$index}_email_widget_add"
65 onClick="javascript:SUGAR.EmailAddressWidget.instances.{$module}{$index}.addEmailAddress('{$module}emailAddressesTable{$index}','','');" 
66 value='{$app_strings.LBL_ADD_BUTTON}'><img src="{sugar_getimagepath file="id-ff-add.png"}"></button>
67                                                 </span>
68                                         </td>
69                                         <td scope="row" NOWRAP>
70                                             &nbsp;
71                                         </td>
72                                         <td scope="row" NOWRAP>
73                                                 {$app_strings.LBL_EMAIL_PRIMARY}
74                                         </td>
75                                         {if $useReplyTo == true}
76                                         <td scope="row" NOWRAP>
77                                                 {$app_strings.LBL_EMAIL_REPLY_TO}
78                                         </td>
79                                         {/if}
80                                         {if $useOptOut == true}
81                                         <td scope="row" NOWRAP>
82                                                 {$app_strings.LBL_EMAIL_OPT_OUT}
83                                         </td>
84                                         {/if}
85                                         {if $useInvalid == true}
86                                         <td scope="row" NOWRAP>
87                                                 {$app_strings.LBL_EMAIL_INVALID}
88                                         </td>
89                                         {/if}
90                                 </tr>
91                         </table>
92                 </td>
93         </tr>
94 </table>
95 <input type="hidden" name="useEmailWidget" value="true">
96 <script type="text/javascript" language="javascript">
97 SUGAR_callsInProgress++;
98 function init{$module}Email{$index}(){ldelim}
99         if(emailAddressWidgetLoaded || SUGAR.EmailAddressWidget){ldelim}
100                 var table = YAHOO.util.Dom.get("{$module}emailAddressesTable{$index}");
101             var eaw = SUGAR.EmailAddressWidget.instances.{$module}{$index} = new SUGAR.EmailAddressWidget("{$module}");
102                 eaw.emailView = '{$emailView}';
103             eaw.emailIsRequired = "{$required}";
104             eaw.tabIndex = '{$tabindex}';
105             var addDefaultAddress = '{$addDefaultAddress}';
106             var prefillEmailAddress = '{$prefillEmailAddresses}';
107             var prefillData = {$prefillData};
108             if(prefillEmailAddress == 'true') {ldelim}
109                 eaw.prefillEmailAddresses('{$module}emailAddressesTable{$index}', prefillData);
110                 {rdelim} else if(addDefaultAddress == 'true') {ldelim}
111                 eaw.addEmailAddress('{$module}emailAddressesTable{$index}');
112                 {rdelim}
113                 if('{$module}_email_widget_id') {ldelim}
114                    document.getElementById('{$module}_email_widget_id').value = eaw.count;
115                 {rdelim}
116                 SUGAR_callsInProgress--;
117         {rdelim}else{ldelim}
118                 setTimeout("init{$module}Email{$index}();", 500);
119         {rdelim}
120 {rdelim}
121
122 YAHOO.util.Event.onDOMReady(init{$module}Email{$index});
123 </script>