]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/charts/Charts.php
Release 6.1.4
[Github/sugarcrm.git] / include / charts / Charts.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 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 function create_chart($chartName,$xmlFile,$width="800",$height="400") {
41         $html ='<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
42  codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
43  WIDTH="'.$width.'" HEIGHT="'.$height.'" id="'.$chartName.'" ALIGN="">';
44         $html .='<PARAM NAME=movie VALUE="'.getSWFPath('include/charts/'.$chartName.'.swf','filename='.$xmlFile).'">';
45         $html .='<PARAM NAME=bgcolor VALUE=#FFFFFF>';
46         $html .='<PARAM NAME=wmode VALUE=transparent>';
47         $html .= '<PARAM NAME=quality VALUE=high>';
48         $html .='<EMBED src="' . getSWFPath('include/charts/'.$chartName.'.swf','filename='.$xmlFile).'" wmode="transparent" quality=high bgcolor=#FFFFFF  WIDTH="'.$width.'" HEIGHT="'.$height.'" NAME="'.$chartName.'" ALIGN=""
49  TYPE="application/x-shockwave-flash" PLUGINSPAGE="https://www.macromedia.com/go/getflashplayer">';
50         $html .='</EMBED>';
51         $html .='</OBJECT>';
52 return $html;
53 }
54
55
56 function generate_graphcolor($input,$instance) {
57         if ($instance <20) {
58         $color = array(
59         "0xFF0000",
60         "0x00FF00",
61         "0x0000FF",
62         "0xFF6600",
63         "0x42FF8E",
64         "0x6600FF",
65         "0xFFFF00",
66         "0x00FFFF",
67         "0xFF00FF",
68         "0x66FF00",
69         "0x0066FF",
70         "0xFF0066",
71         "0xCC0000",
72         "0x00CC00",
73         "0x0000CC",
74         "0xCC6600",
75         "0x00CC66",
76         "0x6600CC",
77         "0xCCCC00",
78         "0x00CCCC");
79         $out = $color[$instance];
80         } else {
81         $out = "0x" . substr(md5($input), 0, 6);
82
83         }
84         return $out;
85 }
86
87 function save_xml_file($filename,$xml_file) {
88         global $app_strings;
89
90         if (!$handle = sugar_fopen($filename, 'w')) {
91                 $GLOBALS['log']->debug("Cannot open file ($filename)");
92                 return;
93         }
94
95         if (fwrite($handle,$xml_file) === FALSE) {
96                 $GLOBALS['log']->debug("Cannot write to file ($filename)");
97                 return false;
98         }
99
100         $GLOBALS['log']->debug("Success, wrote ($xml_file) to file ($filename)");
101
102         fclose($handle);
103         return true;
104
105 }
106
107 function get_max($numbers) {
108     $max = max($numbers);
109     if ($max < 1) return $max;
110     $base = pow(10, floor(log10($max)));
111     return ceil($max/$base) * $base;
112 }
113
114 // retrieve the translated strings.
115 global $current_language;
116 $app_strings = return_application_language($current_language);
117
118 if(isset($app_strings['LBL_CHARSET']))
119 {
120         $charset = $app_strings['LBL_CHARSET'];
121 }
122 else
123 {
124         global $sugar_config;
125         $charset = $sugar_config['default_charset'];
126 }
127 ?>