PluginProbe
Ninja Charts – Interactive Charts and Graphs / 3.4.0
Ninja Charts – Interactive Charts and Graphs v3.4.0
3.4.3 3.4.2 trunk 1.0.0 2.0.0 3.0.0 3.1.0 3.1.1 3.1.2 3.2.0 3.2.1 3.3.0 3.3.1 3.3.2 3.3.5 3.3.6 3.3.7 3.4.0 3.4.1
ninja-charts / plugin.php

plugin.php in Ninja Charts – Interactive Charts and Graphs 3.4.0, at plugin.php

28 lines 870 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 defined('ABSPATH') or die;
3
4 /**
5 * Plugin Name: Ninja Charts - Interactive Charts and Graphs
6 * Description: Ninja Charts - Best WP Charts Plugin for WordPress
7 * Version: 3.4.0
8 * Author: WPManageNinja LLC
9 * Author URI: https://wpmanageninja.com/
10 * Plugin URI: https://wpmanageninja.com/ninja-charts
11 * License: GPL-2.0+
12 * Text Domain: ninja-charts
13 * Domain Path: /language
14 */
15
16 $ninja_charts_info = get_file_data(__FILE__, array('Version' => 'Version'), false);
17 defined('NINJA_CHARTS_VERSION') or define('NINJA_CHARTS_VERSION', $ninja_charts_info['Version']);
18 define('NINJA_CHARTS_FILE', __FILE__);
19 define('NINJA_CHARTS_DIR', plugin_dir_path(__FILE__));
20 define('NINJA_CHARTS_URL', plugin_dir_url(__FILE__));
21
22
23 require __DIR__ . '/vendor/autoload.php';
24
25 call_user_func(function ($bootstrap) {
26 $bootstrap(__FILE__);
27 }, require(__DIR__ . '/boot/app.php'));
28