Files
luos/workflow/engine/plugins/pmosCommunity/drawChart.php
Victor Saisa Lopez 6d9858d6d0 HOR-1738 "Change folder permissions in ProcessMaker" SOLVED
Issue:
    Change folder permissions in ProcessMaker
Cause:
    Nuevo requerimiento
Solution:
    Se cambio los permisos de los files and directories
2016-08-30 13:03:35 -04:00

14 lines
355 B
PHP

<?php
//header("Content-type: image/png");
$chartType = isset ( $_GET['chart']) ? $_GET['chart'] : '1' ;
// use the chart class to build the chart:
require_once ( "class.pmosCommunity.php" );
$chartsObj = new pmosCommunityClass();
if ( method_exists( $chartsObj, $chartType) ) {
$chartsObj->{$chartType}();
die;
}