]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Accounts/views/view.detail.php
Release 6.4.0
[Github/sugarcrm.git] / modules / Accounts / views / view.detail.php
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-2011 SugarCRM Inc.
7  * 
8  * This program is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU Affero General Public License version 3 as published by the
10  * Free Software Foundation with the addition of the following permission added
11  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
12  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
13  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
14  * 
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
18  * details.
19  * 
20  * You should have received a copy of the GNU Affero General Public License along with
21  * this program; if not, see http://www.gnu.org/licenses or write to the Free
22  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23  * 02110-1301 USA.
24  * 
25  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
26  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
27  * 
28  * The interactive user interfaces in modified source and object code versions
29  * of this program must display Appropriate Legal Notices, as required under
30  * Section 5 of the GNU Affero General Public License version 3.
31  * 
32  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
33  * these Appropriate Legal Notices must retain the display of the "Powered by
34  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
35  * technical reasons, the Appropriate Legal Notices must display the words
36  * "Powered by SugarCRM".
37  ********************************************************************************/
38
39
40 require_once('include/MVC/View/views/view.detail.php');
41
42 class AccountsViewDetail extends ViewDetail {
43
44
45         function AccountsViewDetail(){
46                 parent::ViewDetail();
47         }
48
49         /**
50          * display
51          * Override the display method to support customization for the buttons that display
52          * a popup and allow you to copy the account's address into the selected contacts.
53          * The custom_code_billing and custom_code_shipping Smarty variables are found in
54          * include/SugarFields/Fields/Address/DetailView.tpl (default).  If it's a English U.S.
55          * locale then it'll use file include/SugarFields/Fields/Address/en_us.DetailView.tpl.
56          */
57         function display(){
58                                 
59                 if(empty($this->bean->id)){
60                         global $app_strings;
61                         sugar_die($app_strings['ERROR_NO_RECORD']);
62                 }                               
63                 
64                 $this->dv->process();
65                 global $mod_strings;
66                 if(ACLController::checkAccess('Contacts', 'edit', true)) {
67                         $push_billing = '<span class="id-ff"><button class="button btn_copy" title="' . $mod_strings['LBL_PUSH_CONTACTS_BUTTON_LABEL'] . 
68                                                                  '" type="button" onclick=\'open_contact_popup("Contacts", 600, 600, "&account_name=' .
69                                                                  urlencode($this->bean->name) . '&html=change_address' .
70                                                                  '&primary_address_street=' . str_replace(array("\rn", "\r", "\n"), array('','','<br>'), urlencode($this->bean->billing_address_street)) . 
71                                                                  '&primary_address_city=' . $this->bean->billing_address_city . 
72                                                                  '&primary_address_state=' . $this->bean->billing_address_state . 
73                                                                  '&primary_address_postalcode=' . $this->bean->billing_address_postalcode . 
74                                                                  '&primary_address_country=' . $this->bean->billing_address_country .
75                                                                  '", true, false);\' value="' . $mod_strings['LBL_PUSH_CONTACTS_BUTTON_TITLE']. '">'.
76                                                                  SugarThemeRegistry::current()->getImage("id-ff-copy","",null,null,'.png',$mod_strings["LBL_COPY"]).
77                                                                  '</button></span>';
78                                                                  
79                         $push_shipping = '<span class="id-ff"><button class="button btn_copy" title="' . $mod_strings['LBL_PUSH_CONTACTS_BUTTON_LABEL'] . 
80                                                                  '" type="button" onclick=\'open_contact_popup("Contacts", 600, 600, "&account_name=' .
81                                                                  urlencode($this->bean->name) . '&html=change_address' .
82                                                                  '&primary_address_street=' . str_replace(array("\rn", "\r", "\n"), array('','','<br>'), urlencode($this->bean->shipping_address_street)) .
83                                                                  '&primary_address_city=' . $this->bean->shipping_address_city .
84                                                                  '&primary_address_state=' . $this->bean->shipping_address_state .
85                                                                  '&primary_address_postalcode=' . $this->bean->shipping_address_postalcode .
86                                                                  '&primary_address_country=' . $this->bean->shipping_address_country .
87                                                                  '", true, false);\' value="' . $mod_strings['LBL_PUSH_CONTACTS_BUTTON_TITLE'] . '">'.
88                                                                   SugarThemeRegistry::current()->getImage("id-ff-copy",'',null,null,'.png',$mod_strings['LBL_COPY']).
89                                                                  '</button></span>';
90                 } else {
91                         $push_billing = '';
92                         $push_shipping = '';
93                 }
94
95                 $this->ss->assign("custom_code_billing", $push_billing);
96                 $this->ss->assign("custom_code_shipping", $push_shipping);
97         
98         if(empty($this->bean->id)){
99                         global $app_strings;
100                         sugar_die($app_strings['ERROR_NO_RECORD']);
101                 }                               
102                 echo $this->dv->display();
103         }       
104 }
105
106 ?>