Changeset 734794
- Timestamp:
- 07/01/2013 08:45:04 PM (13 years ago)
- Location:
- rj-quickcharts/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
media/init.php (modified) (1 diff)
-
rj_charts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rj-quickcharts/trunk/README.txt
r734790 r734794 6 6 Tags: WordPress charts, charts, chart, graphs, graph, bar chart, bar graph, line chart, line graph, pie chart, pie graph, donut chart, donut graph, quickcharts, jqplot, highcharts 7 7 Requires at least: 3.3 8 Tested up to: 3.5 .29 Stable tag: 0.4. 28 Tested up to: 3.5 9 Stable tag: 0.4.1 10 10 11 11 Create incredible HTML5/JavaScript charts right inside WordPress with a few clicks. … … 44 44 == Changelog == 45 45 46 = 0.4.2 =47 * Charts can only be edited by Admins and Editors48 49 46 = 0.4.1 = 50 47 * Pie chart support added -
rj-quickcharts/trunk/media/init.php
r734791 r734794 18 18 public function register_my_custom_menu_page() 19 19 { 20 //if (current_user_can('edit_others_posts')) { 21 add_menu_page( 22 'RJ Quickcharts', 23 'RJ Quickcharts', 24 'read', 25 'rj-quickcharts/admin/rjqc-admin.php', 26 '', 27 '', 28 '26.1' 29 ); 30 add_submenu_page( 31 'rj-quickcharts/admin/rjqc-admin.php', 32 'My Charts', 33 'My Charts', 34 'read', 35 'rj-quickcharts/admin/rjqc-admin.php' 36 ); 37 add_submenu_page( 38 'rj-quickcharts/admin/rjqc-admin.php', 39 'New Chart', 40 'New Chart', 41 'read', 42 'rj-quickcharts/admin/rjqc-admin-new.php' 43 ); 44 //} 20 add_menu_page( 21 'RJ Quickcharts', 22 'RJ Quickcharts', 23 'read', 24 'rj-quickcharts/admin/rjqc-admin.php', 25 '', 26 '', 27 '26.1' 28 ); 29 add_submenu_page( 30 'rj-quickcharts/admin/rjqc-admin.php', 31 'My Charts', 32 'My Charts', 33 'read', 34 'rj-quickcharts/admin/rjqc-admin.php' 35 ); 36 add_submenu_page( 37 'rj-quickcharts/admin/rjqc-admin.php', 38 'New Chart', 39 'New Chart', 40 'read', 41 'rj-quickcharts/admin/rjqc-admin-new.php' 42 ); 45 43 } 46 44 -
rj-quickcharts/trunk/rj_charts.php
r734790 r734794 4 4 Plugin URI: http://www.randyjensen.com 5 5 Description: Easily create charts for your WordPress site. Line charts, bar charts and pie charts currently supported. 6 Version: 0.4. 26 Version: 0.4.1 7 7 Author: Randy Jensen 8 8 Author URI: http://www.randyjensen.com … … 15 15 global $table_name; 16 16 17 $rjqc_db_version = '0.4. 2';17 $rjqc_db_version = '0.4.1'; 18 18 $table_name = $wpdb->prefix . 'rj_quickcharts'; 19 19
Note: See TracChangeset
for help on using the changeset viewer.