]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Documents/views/view.edit.php
Release 6.2.3
[Github/sugarcrm.git] / modules / Documents / views / view.edit.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 class DocumentsViewEdit extends ViewEdit
41 {
42         /**
43          * @see SugarView::display()
44          */
45         public function display()
46         {
47                 global $app_list_strings, $mod_strings;
48                 /*
49                 $this->bean->category_name = $app_list_strings['document_category_dom'][$this->bean->category_id];
50             $this->bean->subcategory_name = $app_list_strings['document_subcategory_dom'][$this->bean->subcategory_id];
51             if(isset($this->bean->status_id)) {
52             $this->bean->status = $app_list_strings['document_status_dom'][$this->bean->status_id];
53             }
54         $this->bean->related_doc_name = Document::get_document_name($this->bean->related_doc_id);
55         $this->bean->related_doc_rev_number = DocumentRevision::get_document_revision_name($this->bean->related_doc_rev_id);
56         $this->bean->save_file = basename($this->bean->file_url_noimage);
57         */
58                 $load_signed=false;
59                 if ((isset($_REQUEST['load_signed_id']) && !empty($_REQUEST['load_signed_id']))) {
60
61                         $load_signed=true;
62                         if (isset($_REQUEST['record'])) {
63                                 $this->bean->related_doc_id=$_REQUEST['record'];
64                         }
65                         if (isset($_REQUEST['selected_revision_id'])) {
66                                 $this->bean->related_doc_rev_id=$_REQUEST['selected_revision_id'];
67                         }
68
69                         $this->bean->id=null;
70                         $this->bean->document_name=null;
71                         $this->bean->filename=null;
72                         $this->bean->is_template=0;
73                 } //if
74
75                 if (!empty($this->bean->id)) {
76                         $this->ss->assign("FILE_OR_HIDDEN", "hidden");
77                         if (!$this->ev->isDuplicate) {
78                                 $this->ss->assign("DISABLED", "disabled");
79                         }
80                 } else {            
81                         $this->bean->revision = 1;
82                     $this->ss->assign("FILE_OR_HIDDEN", "file");
83                 }
84
85                 $popup_request_data = array(
86                         'call_back_function' => 'document_set_return',
87                         'form_name' => 'EditView',
88                         'field_to_name_array' => array(
89                                 'id' => 'related_doc_id',
90                                 'document_name' => 'related_document_name',
91                                 ),
92                         );
93                 $json = getJSONobj();
94                 $this->ss->assign('encoded_document_popup_request_data', $json->encode($popup_request_data));
95
96
97                 //get related document name.
98                 if (!empty($this->bean->related_doc_id)) {
99                         $this->ss->assign("RELATED_DOCUMENT_NAME",Document::get_document_name($this->bean->related_doc_id));
100                         $this->ss->assign("RELATED_DOCUMENT_ID",$this->bean->related_doc_id);
101                         if (!empty($this->bean->related_doc_rev_id)) {
102                                 $this->ss->assign("RELATED_DOCUMENT_REVISION_OPTIONS", get_select_options_with_id(DocumentRevision::get_document_revisions($this->bean->related_doc_id), $this->bean->related_doc_rev_id));
103                         } else {
104                                 $this->ss->assign("RELATED_DOCUMENT_REVISION_OPTIONS", get_select_options_with_id(DocumentRevision::get_document_revisions($this->bean->related_doc_id), ''));
105                         }
106                 } else {
107                         $this->ss->assign("RELATED_DOCUMENT_REVISION_DISABLED", "disabled");
108                 }
109
110
111                 //set parent information in the form.
112                 if (isset($_REQUEST['parent_id'])) {
113                         $this->ss->assign("PARENT_ID",$_REQUEST['parent_id']);
114                 } //if
115
116                 if (isset($_REQUEST['parent_name'])) {
117                         $this->ss->assign("PARENT_NAME", $_REQUEST['parent_name']);
118
119                         if (!empty($_REQUEST['parent_type'])) {
120                                 switch (strtolower($_REQUEST['parent_type'])) {
121
122                                         case "contracts" :
123                                                 $this->ss->assign("LBL_PARENT_NAME",$mod_strings['LBL_CONTRACT_NAME']);
124                                                 break;
125
126                                         //todo remove leads case.
127                                         case "leads" :
128                                                 $this->ss->assign("LBL_PARENT_NAME",$mod_strings['LBL_CONTRACT_NAME']);
129                                                 break;
130                                 } //switch
131                         } //if
132                 } //if
133
134                 if (isset($_REQUEST['parent_type'])) {
135                         $this->ss->assign("PARENT_TYPE",$_REQUEST['parent_type']);
136                 }
137
138                 if ($load_signed) {
139                         $this->ss->assign("RELATED_DOCUMENT_REVISION_DISABLED", "disabled");
140                         $this->ss->assign("RELATED_DOCUMENT_BUTTON_AVAILABILITY", "hidden");
141                         $this->ss->assign("LOAD_SIGNED_ID",$_REQUEST['load_signed_id']);
142                 } else {
143                         $this->ss->assign("RELATED_DOCUMENT_BUTTON_AVAILABILITY", "button");
144                 } //if-else
145
146                 parent::display();
147         }
148
149         /**
150          * @see SugarView::_getModuleTitleParams()
151          */
152         protected function _getModuleTitleParams($browserTitle = false)
153         {
154         $params = array();
155         $params[] = $this->_getModuleTitleListParam($browserTitle);
156         if(!empty($this->bean->id)){
157                         $params[] = "<a href='index.php?module={$this->module}&action=DetailView&record={$this->bean->id}'>".$this->bean->document_name."</a>";
158                         $params[] = $GLOBALS['app_strings']['LBL_EDIT_BUTTON_LABEL'];
159                 }else{
160                         $params[] = $GLOBALS['app_strings']['LBL_CREATE_BUTTON_LABEL'];
161                 }
162
163                 return $params;
164     }
165 }