]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - themes/Sugar5/tpls/footer.tpl
Release 6.4.1
[Github/sugarcrm.git] / themes / Sugar5 / tpls / footer.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 <!--end body panes-->
39         </td></tr></table>
40     </div>
41     <div class="clear"></div>
42 </div>
43 <div id="bottomLinks">
44 {if $AUTHENTICATED}
45 {$BOTTOMLINKS}
46 {/if}
47 </div>
48 <div id="footer">
49     {$STATISTICS}
50     <div id="copyright">
51         {$COPYRIGHT}
52     </div>
53 </div>
54 <script>
55 {literal}
56 if(SUGAR.util.isTouchScreen()) {
57         setTimeout(resizeHeader,10000);
58 }
59
60 //qe_init function sets listeners to click event on elements of 'quickEdit' class
61  if(typeof(DCMenu) !='undefined'){
62     DCMenu.qe_refresh = false;
63     DCMenu.qe_handle;
64  }
65 function qe_init(){
66
67     //do not process if YUI is undefined
68     if(typeof(YUI)=='undefined' || typeof(DCMenu) == 'undefined'){
69         return;
70     }
71
72
73     //remove all existing listeners.  This will prevent adding multiple listeners per element and firing multiple events per click
74     if(typeof(DCMenu.qe_handle) !='undefined'){
75         DCMenu.qe_handle.detach();
76     }
77
78     //set listeners on click event, and define function to call
79     YUI().use('node', function(Y) {
80         var qe = Y.all('.quickEdit');
81         var refreshDashletID;
82         var refreshListID;
83
84         //store event listener handle for future use, and define function to call on click event
85         DCMenu.qe_handle = qe.on('click', function(e) {
86             //function will flash message, and retrieve data from element to pass on to DC.miniEditView function
87             ajaxStatus.flashStatus(SUGAR.language.get('app_strings', 'LBL_LOADING'),800);
88             e.preventDefault();
89             if(typeof(e.currentTarget.getAttribute('data-dashlet-id'))!='undefined'){
90                 refreshDashletID = e.currentTarget.getAttribute('data-dashlet-id');
91             }
92             if(typeof(e.currentTarget.getAttribute('data-list'))!='undefined'){
93                 refreshListID = e.currentTarget.getAttribute('data-list');
94             }
95             DCMenu.miniEditView(e.currentTarget.getAttribute('data-module'), e.currentTarget.getAttribute('data-record'),refreshListID,refreshDashletID);
96         });
97
98     });
99 }
100
101     qe_init();
102
103
104         SUGAR_callsInProgress++;
105         SUGAR._ajax_hist_loaded = true;
106     if(SUGAR.ajaxUI)
107         YAHOO.util.Event.onContentReady('ajaxUI-history-field', SUGAR.ajaxUI.firstLoad);
108 </script>
109 {/literal}
110
111 </body>
112 </html>