1
|
|
|
<?php |
2
|
|
|
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
3
|
|
|
|
4
|
|
|
/********************************************************************************* |
5
|
|
|
* SugarCRM Community Edition is a customer relationship management program developed by |
6
|
|
|
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
7
|
|
|
|
8
|
|
|
* SuiteCRM is an extension to SugarCRM Community Edition developed by Salesagility Ltd. |
9
|
|
|
* Copyright (C) 2011 - 2014 Salesagility Ltd. |
10
|
|
|
* |
11
|
|
|
* This program is free software; you can redistribute it and/or modify it under |
12
|
|
|
* the terms of the GNU Affero General Public License version 3 as published by the |
13
|
|
|
* Free Software Foundation with the addition of the following permission added |
14
|
|
|
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK |
15
|
|
|
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY |
16
|
|
|
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. |
17
|
|
|
* |
18
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT |
19
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
20
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more |
21
|
|
|
* details. |
22
|
|
|
* |
23
|
|
|
* You should have received a copy of the GNU Affero General Public License along with |
24
|
|
|
* this program; if not, see http://www.gnu.org/licenses or write to the Free |
25
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
26
|
|
|
* 02110-1301 USA. |
27
|
|
|
* |
28
|
|
|
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road, |
29
|
|
|
* SW2-130, Cupertino, CA 95014, USA. or at email address [email protected]. |
30
|
|
|
* |
31
|
|
|
* The interactive user interfaces in modified source and object code versions |
32
|
|
|
* of this program must display Appropriate Legal Notices, as required under |
33
|
|
|
* Section 5 of the GNU Affero General Public License version 3. |
34
|
|
|
* |
35
|
|
|
* In accordance with Section 7(b) of the GNU Affero General Public License version 3, |
36
|
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by |
37
|
|
|
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not |
38
|
|
|
* reasonably feasible for technical reasons, the Appropriate Legal Notices must |
39
|
|
|
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM". |
40
|
|
|
********************************************************************************/ |
41
|
|
|
|
42
|
|
|
|
43
|
|
|
class ContactsViewEdit extends ViewEdit |
44
|
|
|
{ |
45
|
|
|
public function __construct() |
46
|
|
|
{ |
47
|
|
|
parent::__construct(); |
48
|
|
|
$this->useForSubpanel = true; |
49
|
|
|
$this->useModuleQuickCreateTemplate = true; |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
/** |
|
|
|
|
53
|
|
|
* @see SugarView::display() |
54
|
|
|
* |
55
|
|
|
* We are overridding the display method to manipulate the sectionPanels. |
56
|
|
|
* If portal is not enabled then don't show the Portal Information panel. |
57
|
|
|
*/ |
58
|
|
|
public function display() |
59
|
|
|
{ |
60
|
|
|
$this->ev->process(); |
61
|
|
|
if ( !empty($_REQUEST['contact_name']) && !empty($_REQUEST['contact_id']) |
62
|
|
|
&& $this->ev->fieldDefs['report_to_name']['value'] == '' |
63
|
|
|
&& $this->ev->fieldDefs['reports_to_id']['value'] == '') { |
64
|
|
|
$this->ev->fieldDefs['report_to_name']['value'] = $_REQUEST['contact_name']; |
65
|
|
|
$this->ev->fieldDefs['reports_to_id']['value'] = $_REQUEST['contact_id']; |
66
|
|
|
} |
67
|
|
|
$admin = new Administration(); |
68
|
|
|
$admin->retrieveSettings(); |
69
|
|
|
if(empty($admin->settings['portal_on']) || !$admin->settings['portal_on']) { |
70
|
|
|
unset($this->ev->sectionPanels[strtoupper('lbl_portal_information')]); |
71
|
|
|
} else { |
72
|
|
|
if (isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true' ) { |
73
|
|
|
$this->ev->fieldDefs['portal_name']['value'] = ''; |
74
|
|
|
$this->ev->fieldDefs['portal_active']['value'] = '0'; |
75
|
|
|
$this->ev->fieldDefs['portal_password']['value'] = ''; |
76
|
|
|
$this->ev->fieldDefs['portal_password1']['value'] = ''; |
77
|
|
|
$this->ev->fieldDefs['portal_name_verified'] = '0'; |
78
|
|
|
$this->ev->focus->portal_name = ''; |
79
|
|
|
$this->ev->focus->portal_password = ''; |
80
|
|
|
$this->ev->focus->portal_acitve = 0; |
81
|
|
|
} |
82
|
|
|
else { |
83
|
|
|
$this->ev->fieldDefs['portal_password']['value'] = ''; |
84
|
|
|
$this->ev->fieldDefs['portal_password1']['value'] = ''; |
85
|
|
|
} |
86
|
|
|
echo getVersionedScript('modules/Contacts/Contact.js'); |
87
|
|
|
echo '<script language="javascript">'; |
88
|
|
|
echo 'addToValidateComparison(\'EditView\', \'portal_password\', \'varchar\', false, SUGAR.language.get(\'app_strings\', \'ERR_SQS_NO_MATCH_FIELD\') + SUGAR.language.get(\'Contacts\', \'LBL_PORTAL_PASSWORD\'), \'portal_password1\');'; |
89
|
|
|
echo 'addToValidateVerified(\'EditView\', \'portal_name_verified\', \'bool\', false, SUGAR.language.get(\'app_strings\', \'ERR_EXISTING_PORTAL_USERNAME\'));'; |
90
|
|
|
echo 'YAHOO.util.Event.onDOMReady(function() {YAHOO.util.Event.on(\'portal_name\', \'blur\', validatePortalName);YAHOO.util.Event.on(\'portal_name\', \'keydown\', handleKeyDown);});'; |
91
|
|
|
echo '</script>'; |
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
echo $this->ev->display($this->showTitle); |
|
|
|
|
95
|
|
|
} |
96
|
|
|
} |