]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Home/Dashlets/iFrameDashlet/iFrameDashlet.php
Release 6.5.16
[Github/sugarcrm.git] / modules / Home / Dashlets / iFrameDashlet / iFrameDashlet.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-2013 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 require_once('include/Dashlets/Dashlet.php');
40
41
42 class iFrameDashlet extends Dashlet {
43     var $displayTpl = 'modules/Home/Dashlets/iFrameDashlet/display.tpl';
44     var $configureTpl = 'modules/Home/Dashlets/iFrameDashlet/configure.tpl';
45     var $defaultURL = 'http://apps.sugarcrm.com/dashlet/sugarcrm-news-dashlet.html?lang=@@LANG@@&edition=@@EDITION@@&ver=@@VER@@';
46     var $url;
47     protected $allowed_schemes = array("http", "https");
48
49     function iFrameDashlet($id, $options = null) {
50         parent::Dashlet($id);
51         $this->isConfigurable = true;
52
53         if (empty($this->title)) {
54             $this->title = translate('LBL_DASHLET_TITLE', 'Home');
55             $this->title = translate('LBL_DASHLET_DISCOVER_SUGAR_PRO', 'Home');
56         }
57
58         if (!empty($options['titleLabel'])) {
59             $this->title = translate($options['titleLabel'], 'Home');
60         } elseif (!empty($options['title'])) {
61             $this->title = $options['title'];
62         }
63
64         if(empty($options['url'])) {
65             $this->url = $this->defaultURL;
66             $this->url = 'http://apps.sugarcrm.com/dashlet/go-pro.html?lang=@@LANG@@&edition=@@EDITION@@&ver=@@VER@@';
67         } else {
68             $this->url = $options['url'];
69         }
70
71         if(empty($options['height']) || (int)$options['height'] < 1 ) {
72             $this->height = 315;
73         } else {
74             $this->height = (int)$options['height'];
75         }
76
77         if(isset($options['autoRefresh'])) $this->autoRefresh = $options['autoRefresh'];
78     }
79
80     protected function checkURL()
81     {
82         $scheme = parse_url($this->url, PHP_URL_SCHEME);
83         if(!in_array($scheme, $this->allowed_schemes)) {
84             $this->url = 'about:blank';
85             return false;
86         }
87         return true;
88     }
89
90     function displayOptions() {
91         global $app_strings;
92         $ss = new Sugar_Smarty();
93         $ss->assign('titleLBL', translate('LBL_DASHLET_OPT_TITLE', 'Home'));
94                 $ss->assign('urlLBL', translate('LBL_DASHLET_OPT_URL', 'Home'));
95                 $ss->assign('heightLBL', translate('LBL_DASHLET_OPT_HEIGHT', 'Home'));
96         $ss->assign('title', $this->title);
97         $ss->assign('url', $this->url);
98         $ss->assign('id', $this->id);
99         $ss->assign('height', $this->height);
100         $ss->assign('saveLBL', $app_strings['LBL_SAVE_BUTTON_LABEL']);
101         $ss->assign('clearLBL', $app_strings['LBL_CLEAR_BUTTON_LABEL']);
102         if($this->isAutoRefreshable()) {
103                 $ss->assign('isRefreshable', true);
104                         $ss->assign('autoRefresh', $GLOBALS['app_strings']['LBL_DASHLET_CONFIGURE_AUTOREFRESH']);
105                         $ss->assign('autoRefreshOptions', $this->getAutoRefreshOptions());
106                         $ss->assign('autoRefreshSelect', $this->autoRefresh);
107                 }
108
109         return  $ss->fetch($this->configureTpl);
110     }
111
112     function saveOptions($req) {
113         $options = array();
114
115         if ( isset($req['title']) ) {
116             $options['title'] = $req['title'];
117         }
118         if ( isset($req['url']) ) {
119             $options['url'] = $req['url'];
120         }
121         if ( isset($req['height']) ) {
122             $options['height'] = (int)$req['height'];
123         }
124         $options['autoRefresh'] = empty($req['autoRefresh']) ? '0' : $req['autoRefresh'];
125
126         return $options;
127     }
128
129     function display(){
130
131         $sugar_edition = 'COM';
132
133
134         $out_url = str_replace(
135             array('@@LANG@@','@@VER@@','@@EDITION@@'),
136             array($GLOBALS['current_language'],$GLOBALS['sugar_config']['sugar_version'],$sugar_edition),
137             $this->url);
138         $title = $this->title;
139         if(empty($title)){
140             $title = 'empty';
141         }
142
143         $result = parent::display();
144         if ($this->checkURL()) {
145             $result .= "<iframe class='teamNoticeBox' title='{$title}' src='{$out_url}' height='{$this->height}px'></iframe>";
146         } else {
147             $result .= '<table cellpadding="0" cellspacing="0" width="100%" border="0" class="list view"><tr height="20"><td colspan="11"><em>' . translate('LBL_DASHLET_INCORRECT_URL', 'Home') . '</em></td></tr></table>';
148         }
149         return $result;
150     }
151 }