GhostManSec
Server: LiteSpeed
System: Linux premium117.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: eblama1 (1214)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/eblama1/sms.karnplayinland.com/ProgramFunctions/Charts.fnc.php
<?php
/**
 * Charts functions
 *
 * @uses Chart.js plugin
 * @see  assets/js/Chart.js/
 *
 * @package RosarioSIS
 * @subpackage ProgramFunctions
 */

/**
 * Chart.js Chart generation
 *
 * @since 6.0
 * @since 8.0 Upgrade Chart.js from 2.9.3 to 3.4.1 (save 40KB)
 *
 * @link https://www.chartjs.org/docs/latest/
 *
 * @example require_once 'ProgramFunctions/Charts.fnc.php';
 *          echo ChartjsChart( 'pie', $chart_data, $chart_title );
 *
 * @param  string  $type       Chart type line|bar|doughnut|pie.
 * @param  array   $data       associative array containing X axis|ticks|labels [0] & Y axis|values [1]
 *                             Stack series (columns): array( 'series1_label' => $data1, 'series2_label' => $data2, ).
 * @param  string  $title      Chart title.
 *
 * @return string              Chart.js JS file & Chart JS or empty string if error
 */
function ChartjsChart( $type, $data, $title )
{
	static $chart_id = 0;

	$types = [ 'line', 'bar', 'doughnut', 'pie' ];

	if ( ! in_array( $type, $types )
		|| ! is_array( $data )
		|| empty( $data ) )
	{
		return '';
	}

	// @link https://github.com/chartjs/Chart.js/issues/815#issuecomment-270186793
	// @link http://clrs.cc/
	$colors_default = [ '#FF851B', '#2ECC40', '#0074D9', '#F012BE', '#FFDC00', '#3D9970', '#001f3f', '#85144b', '#FF4136', '#01FF70', '#39CCCC', '#B10DC9', '#DD6300', '#50EE62', '#2296FB', '#CE009C', '#DDBA00', '#5FBB92', '#224161', '#A7366D', '#DD1914', '#23FF91', '#61EEEE', '#8F00A7' ];

	$dataset_default = [
		'label' => '',
		'backgroundColor' => $colors_default,
		// 'borderColor' => 'rgb(255, 99, 132)',
		'data' => [],
	];

	$first_key = key( $data );

	if ( $type === 'bar' && is_string( $first_key ) )
	{
		// Stack series.
		$i = 0;

		foreach ( (array) $data as $label => $data_serie )
		{
			$labels = array_values( $data_serie[0] ); // Force start index to 0.

			$dataset = $dataset_default;

			$dataset['label'] = $label;

			$dataset['backgroundColor'] = $colors_default[ $i % count( $colors_default ) ];

			$dataset['data'] = array_values( (array) $data_serie[1] ); // Force start index to 0.

			$datasets[ $i ] = $dataset;

			$i++;
		}
	}
	else
	{
		$labels = array_values( $data[0] ); // Force start index to 0.

		$dataset = $dataset_default;

		$dataset['data'] = array_values( (array) $data[1] ); // Force start index to 0.

		$datasets = [ $dataset ];
	}

	// Chart Options.
	$chart_options = '';

	if ( $type === 'line'
		|| $type === 'bar' )
	{
		// Line & Bar Chart Options.
		$chart_options .= 'scales: {
			x: {
				grid: {
					display: false // Turn off only the vertical gridlines.
				},
				stacked: true
			},
			y: {
				beginAtZero: true,
				stacked: true
			}
		},';

		if ( ! is_string( $first_key ) )
		{
			// Remove legend, empty anyway.
			$chart_options .= 'legend: {
				display: false,
			},';
		}
	}

	ob_start();

	if ( ! $chart_id ) : ?>
		<script src="assets/js/Chart.js/chart.min.js?v=3.4.1"></script>
	<?php endif; ?>

	<div class="chart">
		<canvas id="chart<?php echo $chart_id; ?>"></canvas>
	</div>
	<script>
		Chart.defaults.font.size = 14;

		var chart<?php echo $chart_id; ?> = new Chart(
			document.getElementById(<?php echo json_encode( 'chart' . $chart_id ); ?>).getContext('2d'), {
			// The type of chart we want to create.
			type: <?php echo json_encode( $type ); ?>,

			// The data for our dataset.
			data: {
				labels: <?php echo json_encode( $labels ); ?>,
				datasets: <?php echo json_encode( $datasets ); ?>
			},

			// Configuration options go here.
			options: {
				<?php echo $chart_options; ?>
				responsive: true,
				// Canvas aspect ratio (i.e. width / height, a value of 1 representing a square canvas).
				aspectRatio: 2, // Fix for Pie charts height to big.
				plugins: {
					// Chart Options: Show legend on the right.
					legend: {
						position: "right",
						display: <?php // Hide legend on bar & line charts when only 1 dataset and empty label.
						echo ( ( $type === 'bar' || $type === 'line' )
							&& count( $datasets ) === 1 && $datasets[0]['label'] === '' ?
							'false' : 'true' ); ?>
					},
					title: {
						display: true,
						font: {
							size: 16
						},
						text: <?php echo json_encode( $title ); ?>
					}
				}
			}
		});
	</script>
	<?php

	$chart_id++;

	return ob_get_clean();
}

/**
 * jqPlot Chart generation
 *
 * @deprecated since 6.0 use ChartjsChart().
 *
 * @example require_once 'ProgramFunctions/Charts.fnc.php';
 *          echo jqPlotChart( 'pie', $chart_data, $chartTitle );
 *
 * @param  string  $type       Chart type line|column|pie.
 * @param  array   $data       associative array containing X axis|ticks|labels [0] & Y axis|values [1]
 *                             Stack series (columns): array( 'series1_label' => $data1, 'series2_label' => $data2, ).
 * @param  string  $title      Chart title.
 * @param  boolean $save_image Export Chart to image inside ColorBox (to save Chart) (optional). Defaults to true.
 *
 * @return string              JS, CSS files & jqPlot Chart JS or empty string if error
 */
function jqPlotChart( $type, $data, $title, $save_image = true )
{
	if ( $type === 'column' )
	{
		$type = 'bar';
	}

	return ChartjsChart( $type, $data, $title );
}

/**
 * Add Number to Chart X axis
 * Increment occurences of Number in Chart Y axis
 *
 * @global array   $chart
 * @global integer $diff        Difference b/w min & max
 * @global array   $mins
 * @global boolean $chartline   Is line chart
 *
 * @param  string  $number      Number.
 * @param  string  $column      TITLE.
 *
 * @return string  Number
 */
function makeNumeric( $number, $column )
{
	global $chart,
		$diff,
		$mins,
		$chartline;

	if ( is_null( $number ) )
	{
		return;
	}

	if ( $diff <= 10
		|| $chartline )
	{
		$chart['chart_data'][0][ $number ] = $number;

		if ( ! isset( $chart['chart_data'][1][ $number ] ) )
		{
			$chart['chart_data'][1][ $number ] = 0;
		}

		$chart['chart_data'][1][ $number ]++;
	}
	else
	{
		for ( $i = 1; $i <= 10; $i++ )
		{
			if ( ( $number >= $mins[ $i ]
					&& $number < $mins[$i + 1] )
				|| $i === 10 )
			{
				$chart['chart_data'][1][ $i ]++;

				break;
			}
		}
	}

	return $number;
}