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