]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Users/DetailView.js
Release 6.5.0
[Github/sugarcrm.git] / modules / Users / DetailView.js
1 /*********************************************************************************
2  * SugarCRM Community Edition is a customer relationship management program developed by
3  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
4  *
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU Affero General Public License version 3 as published by the
7  * Free Software Foundation with the addition of the following permission added
8  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
9  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
10  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU Affero General Public License along with
18  * this program; if not, see http://www.gnu.org/licenses or write to the Free
19  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20  * 02110-1301 USA.
21  *
22  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
23  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
24  *
25  * The interactive user interfaces in modified source and object code versions
26  * of this program must display Appropriate Legal Notices, as required under
27  * Section 5 of the GNU Affero General Public License version 3.
28  *
29  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
30  * these Appropriate Legal Notices must retain the display of the "Powered by
31  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
32  * technical reasons, the Appropriate Legal Notices must display the words
33  * "Powered by SugarCRM".
34  ********************************************************************************/
35 function generatepwd(id)
36 {callback={success:function(o)
37 {checkok=o.responseText;if(checkok.charAt(0)!='1')
38 YAHOO.SUGAR.MessageBox.show({title:SUGAR.language.get("Users","LBL_CANNOT_SEND_PASSWORD"),msg:checkok});else
39 YAHOO.SUGAR.MessageBox.show({title:SUGAR.language.get("Users","LBL_PASSWORD_SENT"),msg:SUGAR.language.get("Users","LBL_NEW_USER_PASSWORD_2")});},failure:function(o)
40 {YAHOO.SUGAR.MessageBox.show({title:SUGAR.language.get("Users","LBL_CANNOT_SEND_PASSWORD"),msg:SUGAR.language.get("app_strings","LBL_AJAX_FAILURE")});}}
41 PostData='&to_pdf=1&module=Users&action=GeneratePassword&userId='+id;YAHOO.util.Connect.asyncRequest('POST','index.php',callback,PostData);}
42 function set_return_user_and_save(popup_reply_data)
43 {var form_name=popup_reply_data.form_name;var name_to_value_array;if(popup_reply_data.selection_list)
44 {name_to_value_array=popup_reply_data.selection_list;}else if(popup_reply_data.teams){name_to_value_array=new Array();for(var the_key in popup_reply_data.teams){name_to_value_array.push(popup_reply_data.teams[the_key].team_id);}}else
45 {name_to_value_array=popup_reply_data.name_to_value_array;}
46 var query_array=new Array();for(var the_key in name_to_value_array)
47 {if(the_key=='toJSON')
48 {}
49 else
50 {query_array.push("record[]="+name_to_value_array[the_key]);}}
51 query_array.push('user_id='+get_user_id(form_name));query_array.push('action=AddUserToTeam');query_array.push('module=Teams');var query_string=query_array.join('&');var returnstuff=http_fetch_sync('index.php',query_string);document.location.reload(true);}
52 function get_user_id(form_name)
53 {return window.document.forms[form_name].elements['user_id'].value;}
54 function user_status_display(field){switch(field){case'RegularUser':document.getElementById("calendar_options").style.display="";document.getElementById("edit_tabs").style.display="";document.getElementById("locale").style.display="";document.getElementById("settings").style.display="";document.getElementById("information").style.display="";break;case'GroupUser':document.getElementById("calendar_options").style.display="none";document.getElementById("edit_tabs").style.display="none";document.getElementById("locale").style.display="none";document.getElementById("settings").style.display="none";document.getElementById("information").style.display="none";document.getElementById("email_options_link_type").style.display="none";break;case'PortalUser':document.getElementById("calendar_options").style.display="none";document.getElementById("edit_tabs").style.display="none";document.getElementById("locale").style.display="none";document.getElementById("settings").style.display="none";document.getElementById("information").style.display="none";document.getElementById("email_options_link_type").style.display="none";break;}}
55 function confirmDelete(){var handleYes=function(){SUGAR.util.hrefURL("?module=Users&action=delete&record="+document.forms.DetailView.record.value);};var handleNo=function(){confirmDeletePopup.hide();return false;};var user_portal_group='{$usertype}';var confirm_text=SUGAR.language.get('Users','LBL_DELETE_USER_CONFIRM');if(user_portal_group=='GroupUser'){confirm_text=SUGAR.language.get('Users','LBL_DELETE_GROUP_CONFIRM');}
56 var confirmDeletePopup=new YAHOO.widget.SimpleDialog("Confirm ",{width:"400px",draggable:true,constraintoviewport:true,modal:true,fixedcenter:true,text:confirm_text,bodyStyle:"padding:5px",buttons:[{text:SUGAR.language.get('Users','LBL_OK'),handler:handleYes,isDefault:true},{text:SUGAR.language.get('Users','LBL_CANCEL'),handler:handleNo}]});confirmDeletePopup.setHeader(SUGAR.language.get('Users','LBL_DELETE_USER'));confirmDeletePopup.render(document.body);}