Changeset 878671
- Timestamp:
- 03/20/2014 10:47:06 AM (11 years ago)
- Location:
- wp-fjqgrid/trunk
- Files:
-
- 6 added
- 5 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
wp-fjqgrid/trunk/index.php
r864841 r878671 1 1 <?php 2 2 /* 3 Plugin Name: WP FjqGrid4 Plugin URI: http://wordpress.org/extend/plugins/wp -fjqgrid/3 Plugin Name: WPF-jqGrid 4 Plugin URI: http://wordpress.org/extend/plugins/wpf-jqgrid/ 5 5 Description: jqGrid porting to wordpress 6 Version: 0. 096 Version: 0.10 7 7 Author: faina09 8 8 Author URI: http://profiles.wordpress.org/faina09 9 9 License: GPLv2 or later 10 10 */ 11 $VER = '0. 09';11 $VER = '0.10'; 12 12 defined( 'ABSPATH' ) OR exit; 13 13 14 require_once('wp -fjqgdata.php');15 require_once('wp -fjqgrid.php');14 require_once('wpf-jqgdata.php'); 15 require_once('wpf-jqgrid.php'); 16 16 17 17 global $wpfjqg; 18 18 19 $wpfjqg = new FjqGrid( 'WP FjqGrid', 'wp-fjqgrid', $VER );19 $wpfjqg = new FjqGrid( 'WPF-jqGrid', 'wpf-jqgrid', $VER ); 20 20 register_activation_hook( __FILE__, array( 'FjqGrid', 'fplugin_activate' ) ); 21 21 register_uninstall_hook( __FILE__, array( 'FjqGrid', 'fplugin_uninstall' ) ); -
wp-fjqgrid/trunk/readme.txt
r864841 r878671 1 === WP FjqGrid ===1 === WPF-jqGrid === 2 2 Tags: jquery, jqGrid, grid, table, CRUD, searchable, sortable, editable 3 3 Contributors: faina09 … … 22 22 If any bug found please ask me for support! 23 23 24 Info and samples at <a href="http://faina09.it/category/wp-plugins/wpfjqgrid/">WP FjqGrid developer's site</a>24 Info and samples at <a href="http://faina09.it/category/wp-plugins/wpfjqgrid/">WPF-jqGrid developer's site</a> 25 25 26 26 == Installation == 27 1. Unzip and place the 'wp -fjqgrid' folder in your 'wp-content/plugins' directory.27 1. Unzip and place the 'wpf-jqgrid' folder in your 'wp-content/plugins' directory. 28 28 2. Activate the plugin. 29 3. Click the 'WP FjqGrid' link in the WordPress setting menu29 3. Click the 'WPF-jqGrid' link in the WordPress setting menu 30 30 4. Check the 'Enable' and one or more tables names allowed (the precompiled fields are intended for a fast start: just click "save") 31 31 5. Save (step REQUIRED). 32 6. Use a shortcode like [wp -fjqgrid table='wpf_jqgrid_sample' idtable=1 caption='name to display' editable=true] in any page or post to display a CRUD for the table!32 6. Use a shortcode like [wpf-jqgrid table='wpf_jqgrid_sample' idtable=1 caption='name to display' editable=true] in any page or post to display a CRUD for the table! 33 33 34 34 == Frequently Asked Questions == … … 69 69 70 70 == Screenshots == 71 1. Setup 'WP FjqGrid'72 2. Sample of 'WP FjqGrid' front page, see live at <a href="http://faina09.it/category/wp-plugins/wpfjqgrid/">WP FjqGrid developer's site</a>73 3. Edit popup window, see live at <a href="http://faina09.it/category/wp-plugins/wpfjqgrid/">WP FjqGrid developer's site</a>71 1. Setup 'WPF-jqGrid' 72 2. Sample of 'WPF-jqGrid' front page, see live at <a href="http://faina09.it/category/wp-plugins/wpfjqgrid/">WPF-jqGrid developer's site</a> 73 3. Edit popup window, see live at <a href="http://faina09.it/category/wp-plugins/wpfjqgrid/">WPF-jqGrid developer's site</a> 74 74 75 75 == Changelog == 76 = 0.10 = 77 * sortby=field,asc|desc into shortcode 78 * ATTENTION: renamed, need resave setup page and rename shortcode to [wpf-jqgrid] 79 76 80 = 0.09 = 77 81 * admin-ajax.php path fix (tnx to michael walker)
Note: See TracChangeset
for help on using the changeset viewer.