Changeset 957924
- Timestamp:
- 07/31/2014 09:13:36 AM (11 years ago)
- Location:
- wp-fjqgrid/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
wp-fjqgrid/trunk/index.php
r951733 r957924 3 3 Plugin Name: WPF-jqGrid 4 4 Plugin URI: http://wordpress.org/extend/plugins/wpf-jqgrid/ 5 Description: jqGrid porting to wordpress 6 Version: 0.1 25 Description: jqGrid porting to wordpress. Use shortcode like <code>[wpf-jqgrid table='wpf_jqgrid_sample' idtable=1 caption='name to display' editable=true]</code> 6 Version: 0.13 7 7 Author: faina09 8 8 Author URI: http://profiles.wordpress.org/faina09 9 9 License: GPLv2 or later 10 10 */ 11 $VER = '0.1 2';11 $VER = '0.13'; 12 12 defined( 'ABSPATH' ) OR exit; 13 13 -
wp-fjqgrid/trunk/readme.txt
r951733 r957924 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 10 11 Use jqGrid ( jquery plugin) to manage database tables.11 Use jqGrid (a jQuery plugin) to manage database tables. Use shortcode like [wpf-jqgrid table='wpf_jqgrid_sample' idtable=1 caption='name to display' editable=true] 12 12 13 13 == Description == … … 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/wp fjqgrid/">WPF-jqGrid developer's site</a>24 Info and samples at <a href="http://faina09.it/category/wp-plugins/wp-fjqgrid/">WPF-jqGrid developer's site</a> 25 25 26 26 == Installation == … … 74 74 75 75 == Changelog == 76 = 0.13 = 77 * fix ob_clean 76 78 = 0.12 = 77 79 * WP 4.0 -
wp-fjqgrid/trunk/wpf-jqgdata.php
r878671 r957924 70 70 $options = stripslashes_deep( get_option( $this->wpf_code ) ); 71 71 $allowed_tables = explode( ',', $options['allowed'] ); 72 ob_clean();73 72 if ( in_array( $tablename, $allowed_tables ) ) { 74 73 echo $this->fjqg_data( $tablename, $sqlwhere, $page, $rows, $sidx, $sord );
Note: See TracChangeset
for help on using the changeset viewer.