]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/Smarty/plugins/function.sugarvar_connector.php
Release 6.5.0
[Github/sugarcrm.git] / include / Smarty / plugins / function.sugarvar_connector.php
1 <?php
2
3 /*
4
5 Modification information for LGPL compliance
6
7 r56990 - 2010-06-16 13:05:36 -0700 (Wed, 16 Jun 2010) - kjing - snapshot "Mango" svn branch to a new one for GitHub sync
8
9 r56989 - 2010-06-16 13:01:33 -0700 (Wed, 16 Jun 2010) - kjing - defunt "Mango" svn dev branch before github cutover
10
11 r55980 - 2010-04-19 13:31:28 -0700 (Mon, 19 Apr 2010) - kjing - create Mango (6.1) based on windex
12
13 r51719 - 2009-10-22 10:18:00 -0700 (Thu, 22 Oct 2009) - mitani - Converted to Build 3  tags and updated the build system 
14
15 r51634 - 2009-10-19 13:32:22 -0700 (Mon, 19 Oct 2009) - mitani - Windex is the branch for Sugar Sales 1.0 development
16
17 r50375 - 2009-08-24 18:07:43 -0700 (Mon, 24 Aug 2009) - dwong - branch kobe2 from tokyo r50372
18
19 r42807 - 2008-12-29 11:16:59 -0800 (Mon, 29 Dec 2008) - dwong - Branch from trunk/sugarcrm r42806 to branches/tokyo/sugarcrm
20
21 r42645 - 2008-12-18 13:41:08 -0800 (Thu, 18 Dec 2008) - awu - merging maint_5_2_0 rev41336:HEAD to trunk
22
23 r42562 - 2008-12-15 17:54:57 -0800 (Mon, 15 Dec 2008) - dwong - create branches/maint_5_2_0 from branches/milan r42559
24
25 r42508 - 2008-12-11 14:59:33 -0800 (Thu, 11 Dec 2008) - Collin Lee - Updated license information  and emoved Wrapper components (we decided to not have these components awhile back).
26
27 r41851 - 2008-11-17 17:57:10 -0800 (Mon, 17 Nov 2008) - roger - bug: 26286.
28
29 r41724 - 2008-11-13 08:55:42 -0800 (Thu, 13 Nov 2008) - Collin Lee - Made changes to rename DataSource module and components to Connectors.
30
31
32 */
33
34
35 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
36 /*********************************************************************************
37  * SugarCRM Community Edition is a customer relationship management program developed by
38  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
39  * 
40  * This program is free software; you can redistribute it and/or modify it under
41  * the terms of the GNU Affero General Public License version 3 as published by the
42  * Free Software Foundation with the addition of the following permission added
43  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
44  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
45  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
46  * 
47  * This program is distributed in the hope that it will be useful, but WITHOUT
48  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
49  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
50  * details.
51  * 
52  * You should have received a copy of the GNU Affero General Public License along with
53  * this program; if not, see http://www.gnu.org/licenses or write to the Free
54  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
55  * 02110-1301 USA.
56  * 
57  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
58  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
59  * 
60  * The interactive user interfaces in modified source and object code versions
61  * of this program must display Appropriate Legal Notices, as required under
62  * Section 5 of the GNU Affero General Public License version 3.
63  * 
64  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
65  * these Appropriate Legal Notices must retain the display of the "Powered by
66  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
67  * technical reasons, the Appropriate Legal Notices must display the words
68  * "Powered by SugarCRM".
69  ********************************************************************************/
70
71
72 function smarty_function_sugarvar_connector($params, &$smarty) {
73       
74       $displayParams = $smarty->get_template_vars('displayParams');
75       if(!isset($displayParams['module'])) {
76          $smarty->trigger_error("sugarvar_connector: missing 'module' parameter");
77          $GLOBALS['log']->error("sugarvar_connector: missing 'module' parameter");
78          return;        
79       }
80       
81       require_once('include/connectors/utils/ConnectorUtils.php');
82       echo ConnectorUtils::getConnectorButtonScript($displayParams, $smarty);
83 }
84 ?>