# sql-chart-builder/2.3.3/guaven_sqlcharts.php

SQL Chart Builder, version 2.3.3. 23 lines.

- Page: https://pluginprobe.com/plugins/sql-chart-builder/2.3.3/code/guaven_sqlcharts.php
- Raw: https://pluginprobe.com/plugins/sql-chart-builder/2.3.3/raw/guaven_sqlcharts.php
- Modified: 2022-07-21T10:58:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sql-chart-builder/2.3.3/code/guaven_sqlcharts.php#L10-L20`.

```php
<?php
/**
 * Plugin Name:       Guaven SQL Charts
 * Plugin URI:        http://guaven.com/updatepusher
 * Description:       Turn Your SQL Queries into Beautiful Dynamic Charts- Pie, Line, Area, Donut, Bar, Polar Charts with date/input filters.
 * Version:           2.3.3
 * Author:            Guaven Labs
 * Author URI:        http://guaven.com/
 * Text Domain:       guaven_sqlcharts
 * Domain Path:       /languages
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

define('GVNSQLCHARTS_VERSION','2.3.0');


require_once(dirname(__FILE__)."/functions.php");
require_once(dirname(__FILE__)."/googlecharts-deprecated.php");

```
