Plugin Directory

Changeset 2451983


Ignore:
Timestamp:
01/07/2021 02:37:34 PM (5 years ago)
Author:
saturntables
Message:

Version 1.2.4 Bug Fix

Location:
saturn-tables
Files:
9 added
3 edited

Legend:

Unmodified
Added
Removed
  • saturn-tables/trunk/classes/saturn_tables_list_table_render.class.php

    r2445390 r2451983  
    112112                if (isset($search) && is_array($search)) {
    113113                    $search_label = isset($search['label']) ? $search['label'] : "Search";
    114                     $search_id = isset($search['is']) ? $search['is'] : "search_id";
     114                    $search_id = isset($search['id']) ? $search['id'] : "search_id";
    115115                    $this->list_table_obj->search_box($search_label, $search_id);
    116116                }
  • saturn-tables/trunk/plugin_loader.php

    r2445390 r2451983  
    44Plugin URI: https://saturntables.com
    55Description: A List Table creation plugin to enable datasources and data tables to be displayed in the WordPress administration panel in the native dashboard tabular format.
    6 Version: 1.2.3
     6Version: 1.2.4
    77Author: Brimbox LLC
    88License: GPL v2.0
  • saturn-tables/trunk/readme.txt

    r2445506 r2451983  
    55Requires at least: 5.0
    66Tested up to: 5.6
    7 Stable tag: 1.2.3
     7Stable tag: 1.2.4
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    1414== Description ==
    1515
    16 [Saturn Tables](https://saturntables.com "Saturn Tables") provides a construct for methodical and organized construction of WordPress List Tables, the native format WordPress uses to display tabular data in the administration area. These are the type of display tables used for Posts and Pages, and are commonly used in major plugins. Designed for coders, this plugin is usually for projects involving data outside the WordPress data structure.
     16Saturn Tables provides a construct for methodical and organized construction of WordPress List Tables, the native format WordPress uses to display tabular data in the administration area. Designed for developers, this plugin is for projects involving data outside the WordPress data structure.
    1717
    18 With simple PHP and MySQL programming, this plugin will construct beautiful and seamless data tables for custom datasets in the administration area of WordPress. It is much easier than constructing custom data table displays, pagination and other functionality from scratch. Little HTML or styling is needed, the tables appear seamlessly into the administration area.
    19 
    20 == Screenshots ==
    21 
    22 1. The Cars example from the website built with the example code and data.
    23 2. Another example, a table of links and banners for a calendar based home page.
    24 3. The Cars HTML5 input form built with the Saturn Tables form functionality.
     18With simple PHP and MySQL programming, this plugin will construct beautiful and seamless data tables for custom datasets in the administration area of WordPress. And it is much easier than constructing custom data tables, pagination and other functionality from scratch. Little HTML or styling is needed, the tables appear just like the WordPress Posts or Pages list tables.
    2519
    2620== Frequently Asked Questions ==
     
    3226= What level of WordPress knowledge is needed? =
    3327
    34 If you can set up a custom WordPress administration menu or build a simple plugin it would be helpful. There is an assumption you would know some MySQL, also $wpdb, since Saturn Tables is for displaying data in the administration area. WordPress style PHP; filters, hooks and callbacks would be helpful.
     28If you can set up a custom WordPress menu or a simple plugin it would be helpful. There is a assumption you would know some MySQL since Saturn Tables is for displaying data in the administration area. WordPress style PHP, hooks and callbacks would be helpful.
    3529
    3630= How do I get started? =
    3731
    3832It would probably be easiest to install the sample code and data provided on the [website](https://saturntables.com "Saturn Tables") and then fork your project from there. Two sample code bases are provided for use and demonstration, you should be able to morph from there.
    39 
    40 = Is there documentation? =
    41 
    42 Yes. The [Saturn Tables](https://saturntables.com "Saturn Tables") home page has complete documentation.
    4333
    4434= Anything else I should know =
     
    4838== Changelog ==
    4939
     40= 1.2.4 =
     41* Small bug fix.
     42
    5043= 1.2.3 =
    5144* Initial Release.
Note: See TracChangeset for help on using the changeset viewer.