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