Add php files

This commit is contained in:
2025-05-12 15:44:39 +00:00
parent c951760058
commit 82d5804ac4
9534 changed files with 2638137 additions and 0 deletions

22
modules/EcmCharts/OpenPopup.php Executable file
View File

@@ -0,0 +1,22 @@
<html>
<body>
<?php
include_once('include/ECM/open_flash_chart/ofc-library/open_flash_chart_object.php');
if($_GET['file']!=2){
open_flash_chart_object(($_GET['width']-20),($_GET['height']-120),'modules/EcmCharts/'.$_GET['file'].'.php',true,'include/ECM/open_flash_chart/');
}
else{
echo '<div style="display:table;">';
echo '<div style="display:table-row;">';
echo '<div style="display:table-cell;">';
open_flash_chart_object(($_GET['width']/2-20),($_GET['height']-120),'modules/EcmCharts/2.php?type=sales',true,'include/ECM/open_flash_chart/');
echo '</div>';
echo '<div style="display:table-cell;">';
open_flash_chart_object(($_GET['width']/2-20),($_GET['height']-120),'modules/EcmCharts/2.php?type=pln_margin',true,'include/ECM/open_flash_chart/');
echo '</div>';
echo '</div>';
echo '</div>';
}
?>
</body>
</html>