| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: Guaven SQL Charts |
| 4 |
* Plugin URI: http://guaven.com/updatepusher |
| 5 |
* Description: Turn Your SQL Queries to Beautiful Dynamic Charts- Pie, Line, Area, Donut, Bar Charts with date/input filters. |
| 6 |
* Version: 2.3.1 |
| 7 |
* Author: Guaven Labs |
| 8 |
* Author URI: http://guaven.com/ |
| 9 |
* Text Domain: guaven_sqlcharts |
| 10 |
* Domain Path: /languages |
| 11 |
*/ |
| 12 |
|
| 13 |
// If this file is called directly, abort. |
| 14 |
if ( ! defined( 'WPINC' ) ) { |
| 15 |
die; |
| 16 |
} |
| 17 |
|
| 18 |
define('GVNSQLCHARTS_VERSION','2.3.0'); |
| 19 |
|
| 20 |
|
| 21 |
require_once(dirname(__FILE__)."/functions.php"); |
| 22 |
require_once(dirname(__FILE__)."/googlecharts-deprecated.php"); |
| 23 |
|