PluginProbe
M Chart / 2.2.2
M Chart v2.2.2
2.3.2 2.3.1 2.3 2.2.2 2.2.1 2.2 trunk 1.0 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.10 1.10.1 1.11 1.11.1 1.11.2 1.12 1.2 1.2.1 1.3 1.3.1 1.3.2 All 53 releases
m-chart / m-chart.php

m-chart.php in M Chart 2.2.2, at m-chart.php

22 lines 556 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: M Chart
4 Version: 2.2.2
5 Plugin URI: https://github.com/methnen/m-chart
6 Description: Manage data sets via a spreadsheet interface, display them as charts via the Chart.js chart library, and embed them via a shortcode or block.
7 Author: Jamie Poitra
8 Author URI: https://methnen.com
9 Tags: chartjs, highcharts, graphs, charts, tables, data
10 Text Domain: m-chart
11 Domain Path: /components/languages
12 Requires PHP: 8.1
13 License: MIT
14 */
15
16 if ( ! defined( 'ABSPATH' ) ) {
17 exit;
18 }
19
20 require_once __DIR__ . '/components/class-m-chart.php';
21 m_chart();
22