]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/MVC/View/views/view.quickcreate.php
Release 6.2.4
[Github/sugarcrm.git] / include / MVC / View / views / view.quickcreate.php
1 <?php
2 //FILE SUGARCRM flav=pro || flav=sales
3 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
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.ajax.php');
41 require_once('include/EditView/EditView2.php');
42
43 class ViewQuickcreate extends ViewAjax
44 {
45         protected $_isDCForm = false;
46         
47         /**
48          * @var EditView object
49          */
50         protected $ev;
51         
52     /**
53      * @see SugarView::preDisplay()
54      */
55     public function preDisplay() 
56     {
57         if(!empty($_REQUEST['source_module']) && $_REQUEST['source_module'] != 'undefined' && !empty($_REQUEST['record'])) {
58                         $this->bean = loadBean($_REQUEST['source_module']);
59                         if ( $this->bean instanceOf SugarBean 
60                                 && !in_array($this->bean->object_name,array('EmailMan')) ) {
61                 $this->bean->retrieve($_REQUEST['record']);
62                 if(!empty($this->bean->id))$_REQUEST['parent_id'] = $this->bean->id;
63                 if(!empty($this->bean->module_dir))$_REQUEST['parent_type'] = $this->bean->module_dir;
64                 if(!empty($this->bean->name))$_REQUEST['parent_name'] = $this->bean->name;
65                 if(!empty($this->bean->id))$_REQUEST['return_id'] = $this->bean->id;
66                 if(!empty($this->bean->module_dir))$_REQUEST['return_module'] = $this->bean->module_dir;
67                 
68                 //Now preload any related fields 
69                             if(isset($_REQUEST['module'])) {
70                         $target_bean = loadBean($_REQUEST['module']);
71                         foreach($target_bean->field_defs as $fields) {  
72                                 if($fields['type'] == 'relate' && isset($fields['module']) && $fields['module'] == $_REQUEST['source_module'] && isset($fields['rname'])) {
73                                    $rel_name = $fields['rname'];
74                                    if(isset($this->bean->$rel_name)) {
75                                           $_REQUEST[$fields['name']] = $this->bean->$rel_name;
76                                    }
77                                         if(!empty($_REQUEST['record']) && !empty($fields['id_name'])) {
78                                                 $_REQUEST[$fields['id_name']] = $_REQUEST['record'];
79                                    }
80                                 }
81                         }
82                 }               
83             }
84             $this->_isDCForm = true;
85         }
86     }    
87     
88     /**
89      * @see SugarView::display()
90      */
91     public function display()
92     {       
93         $view = (!empty($_REQUEST['target_view']))?$_REQUEST['target_view']: 'QuickCreate';
94                 $module = $_REQUEST['module'];
95                 
96                 // locate the best viewdefs to use: 1. custom/module/quickcreatedefs.php 2. module/quickcreatedefs.php 3. custom/module/editviewdefs.php 4. module/editviewdefs.php
97                 $base = 'modules/' . $module . '/metadata/';
98                 $source = 'custom/' . $base . strtolower($view) . 'defs.php';
99                 if (!file_exists( $source))
100                 {
101                         $source = $base . strtolower($view) . 'defs.php';
102                         if (!file_exists($source))
103                         {
104                                 //if our view does not exist default to EditView
105                                 $view = 'EditView';
106                                 $source = 'custom/' . $base . 'editviewdefs.php';
107                                 if (!file_exists($source))
108                                 {
109                                         $source = $base . 'editviewdefs.php';
110                                 }
111                         }
112                 }
113
114                 $this->ev = new EditView();
115                 $this->ev->view = $view;
116                 $this->ev->ss = new Sugar_Smarty();
117                 
118                 $this->ev->ss->assign('isDCForm', $this->_isDCForm);
119                 //$_REQUEST['return_action'] = 'SubPanelViewer';
120                 $this->ev->setup($module, null, $source);
121                 $this->ev->showSectionPanelsTitles = false;
122             $this->ev->defs['templateMeta']['form']['headerTpl'] = 'include/EditView/header.tpl';
123                 $this->ev->defs['templateMeta']['form']['footerTpl'] = 'include/EditView/footer.tpl';
124                 $this->ev->defs['templateMeta']['form']['buttons'] = array('DCMENUSAVE', 'DCMENUCANCEL', 'DCMENUFULLFORM');
125                 $this->ev->defs['templateMeta']['form']['button_location'] = 'bottom';
126                 $this->ev->defs['templateMeta']['form']['hidden'] = '<input type="hidden" name="is_ajax_call" value="1" />';
127                 $this->ev->defs['templateMeta']['form']['hidden'] .= '<input type="hidden" name="from_dcmenu" value="1" />';
128                 $defaultProcess = true;
129
130         //Load the parent view class if it exists.  Check for custom file first
131         loadParentView('edit');
132
133                 if(file_exists('modules/'.$module.'/views/view.edit.php')) {
134             include('modules/'.$module.'/views/view.edit.php'); 
135             $c = $module . 'ViewEdit';
136             
137             if(class_exists($c)) {
138                     $view = new $c;
139                     if($view->useForSubpanel) {
140                         $defaultProcess = false;
141                         
142                         //Check if we shold use the module's QuickCreate.tpl file
143                         if($view->useModuleQuickCreateTemplate && file_exists('modules/'.$module.'/tpls/QuickCreate.tpl')) {
144                            $this->ev->defs['templateMeta']['form']['headerTpl'] = 'modules/'.$module.'/tpls/QuickCreate.tpl'; 
145                         }
146                         
147                             $view->ev = & $this->ev;
148                             $view->ss = & $this->ev->ss;
149                                         $class = $GLOBALS['beanList'][$module];
150                                         if(!empty($GLOBALS['beanFiles'][$class])){
151                                                 require_once($GLOBALS['beanFiles'][$class]);
152                                                 $bean = new $class();
153                                                 $view->bean = $bean;
154                                         }
155                                         $view->ev->formName = 'form_DC'.$view->ev->view .'_'.$module;
156                                         $view->showTitle = false; // Do not show title since this is for subpanel
157                             $view->display(); 
158                     }
159             }
160                 } //if
161                 
162                 if($defaultProcess) {
163                    $form_name = 'form_DC'.$this->ev->view .'_'.$module;
164                    $this->ev->formName = $form_name;
165                    $this->ev->process(true, $form_name);
166                    echo $this->ev->display(false, true);
167                 }
168         }
169 }