Changeset 3242372
- Timestamp:
- 02/18/2025 06:07:10 AM (13 months ago)
- Location:
- easy-charts/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
easy-charts.php (modified) (1 diff)
-
includes/class-easy-charts.php (modified) (1 diff)
-
public/class-easy-charts-public.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-charts/trunk/README.txt
r3081203 r3242372 3 3 Tags: chart, graph, bar, line, pie, area, stacked, stacked bar, step up bar, percent bar, stacked area, percent area, donut, polar area, waterfall easy integration, uniform, data representation, simple, download as image, responsive 4 4 Requires at least: 3.0 5 Tested up to: 6. 5.26 Stable tag: 1.2. 35 Tested up to: 6.7.2 6 Stable tag: 1.2.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 78 78 == Changelog == 79 79 80 = 1.2.4 = 81 *Release Date - 18th Feb, 2025* 82 83 * Add Sanitization for shortcode attributes. 84 80 85 = 1.2.3 = 81 86 *Release Date - 4th May, 2024* -
easy-charts/trunk/easy-charts.php
r3081203 r3242372 10 10 * Plugin URI: http://kiranpotphode.github.io/easy-charts/ 11 11 * Description: Build simple, reusable, customisable charts on any page or post with ease. 12 * Version: 1.2. 312 * Version: 1.2.4 13 13 * Author: Kiran Potphode 14 14 * License: GPL-2.0+ -
easy-charts/trunk/includes/class-easy-charts.php
r3081203 r3242372 69 69 70 70 $this->plugin_name = 'easy-charts'; 71 $this->version = '1.2. 3';71 $this->version = '1.2.4'; 72 72 73 73 $this->load_dependencies(); -
easy-charts/trunk/public/class-easy-charts-public.php
r3081203 r3242372 114 114 * 115 115 * @param string $atts Attributes for shortcode. 116 * @param string $content Content inside Shortcode enclosing tags. Default is ''.117 116 * 118 117 * @return string Parsed Shortcode html markup. 119 118 */ 120 public static function easy_chart_shortcode_callback( $atts , $content = '') {119 public static function easy_chart_shortcode_callback( $atts ) { 121 120 $atts = shortcode_atts( 122 121 array( … … 127 126 ); 128 127 129 $chart_id = $atts['chart_id'];128 $chart_id = intval( $atts['chart_id'] ); 130 129 131 130 if ( $chart_id ) {
Note: See TracChangeset
for help on using the changeset viewer.