]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Campaigns/SubPanelViewer.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Campaigns / SubPanelViewer.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39
40
41 global $gridline;
42 global $theme;
43 global $beanList;
44 global $beanFiles;
45
46
47 if(empty($_REQUEST['module']))
48 {
49         die("'module' was not defined");
50 }
51
52 if(empty($_REQUEST['record']))
53 {
54         die("'record' was not defined");
55 }
56
57 if(!isset($beanList[$_REQUEST['module']]))
58 {
59         die("'".$_REQUEST['module']."' is not defined in \$beanList");
60 }
61
62 $subpanel = $_REQUEST['subpanel'];
63 $record = $_REQUEST['record'];
64 $module = $_REQUEST['module'];
65
66
67 $image_path = 'themes/'.$theme.'/images/';
68
69 if(empty($_REQUEST['inline']))
70 {
71         insert_popup_header($theme);
72 }
73
74 //require_once('include/SubPanel/SubPanelDefinitions.php');
75 //require_once($beanFiles[$beanList[$_REQUEST['module']]]);
76 //$focus=new $beanList[$_REQUEST['module']];
77 //$focus->retrieve($record);
78
79 include('include/SubPanel/SubPanel.php');
80 $layout_def_key = '';
81 if(!empty($_REQUEST['layout_def_key'])){
82         $layout_def_key = $_REQUEST['layout_def_key'];
83 }
84
85 $subpanel_object = new SubPanel($module, $record, $subpanel,null, $layout_def_key);
86
87 $subpanel_object->setTemplateFile('include/SubPanel/SubPanelDynamic.html');
88
89 if(!empty($_REQUEST['mkt_id']) && $_REQUEST['mkt_id'] != 'all') {// bug 32910
90     $mkt_id = $_REQUEST['mkt_id'];
91 }
92
93 if(!empty($mkt_id)) {
94     $subpanel_object->subpanel_defs->_instance_properties['function_parameters']['EMAIL_MARKETING_ID_VALUE'] = $mkt_id;
95 }
96 echo (empty($_REQUEST['inline']))?$subpanel_object->get_buttons():'' ;  
97
98 $subpanel_object->display();
99
100 if(empty($_REQUEST['inline']))
101 {
102         insert_popup_footer($theme);
103 }
104
105 ?>