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