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