]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarEmailAddress/templates/forEditView.tpl
Release 6.4.0
[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                         {capture assign="other_attributes"}id="{$module}{$index}_email_widget_add" onclick="javascript:SUGAR.EmailAddressWidget.instances.{$module}{$index}.addEmailAddress('{$module}emailAddressesTable{$index}','','');"{/capture}
64                         <button type="button" {$other_attributes}>{sugar_getimage name="id-ff-add" alt="$app_strings.LBL_ID_FF_ADD" ext=".png"}</button>
65                                         </td>
66                                         <td scope="row" NOWRAP>
67                                             &nbsp;
68                                         </td>
69                                         <td scope="row" NOWRAP>
70                                                 {$app_strings.LBL_EMAIL_PRIMARY}
71                                         </td>
72                                         {if $useReplyTo == true}
73                                         <td scope="row" NOWRAP>
74                                                 {$app_strings.LBL_EMAIL_REPLY_TO}
75                                         </td>
76                                         {/if}
77                                         {if $useOptOut == true}
78                                         <td scope="row" NOWRAP>
79                                                 {$app_strings.LBL_EMAIL_OPT_OUT}
80                                         </td>
81                                         {/if}
82                                         {if $useInvalid == true}
83                                         <td scope="row" NOWRAP>
84                                                 {$app_strings.LBL_EMAIL_INVALID}
85                                         </td>
86                                         {/if}
87                                 </tr>
88                         </table>
89                 </td>
90         </tr>
91 </table>
92 <input type="hidden" name="useEmailWidget" value="true">
93 <script type="text/javascript" language="javascript">
94 SUGAR_callsInProgress++;
95 function init{$module}Email{$index}(){ldelim}
96         if(emailAddressWidgetLoaded || SUGAR.EmailAddressWidget){ldelim}
97                 var table = YAHOO.util.Dom.get("{$module}emailAddressesTable{$index}");
98             var eaw = SUGAR.EmailAddressWidget.instances.{$module}{$index} = new SUGAR.EmailAddressWidget("{$module}");
99                 eaw.emailView = '{$emailView}';
100             eaw.emailIsRequired = "{$required}";
101             eaw.tabIndex = '{$tabindex}';
102             var addDefaultAddress = '{$addDefaultAddress}';
103             var prefillEmailAddress = '{$prefillEmailAddresses}';
104             var prefillData = {$prefillData};
105             if(prefillEmailAddress == 'true') {ldelim}
106                 eaw.prefillEmailAddresses('{$module}emailAddressesTable{$index}', prefillData);
107                 {rdelim} else if(addDefaultAddress == 'true') {ldelim}
108                 eaw.addEmailAddress('{$module}emailAddressesTable{$index}');
109                 {rdelim}
110                 if('{$module}_email_widget_id') {ldelim}
111                    document.getElementById('{$module}_email_widget_id').value = eaw.count;
112                 {rdelim}
113                 SUGAR_callsInProgress--;
114         {rdelim}else{ldelim}
115                 setTimeout("init{$module}Email{$index}();", 500);
116         {rdelim}
117 {rdelim}
118
119 YAHOO.util.Event.onDOMReady(init{$module}Email{$index});
120 </script>