Changeset 2451983
- Timestamp:
- 01/07/2021 02:37:34 PM (5 years ago)
- Location:
- saturn-tables
- Files:
-
- 9 added
- 3 edited
-
tags/1.2.4 (added)
-
tags/1.2.4/LICENSE (added)
-
tags/1.2.4/classes (added)
-
tags/1.2.4/classes/saturn_tables_input_form_render.class.php (added)
-
tags/1.2.4/classes/saturn_tables_list_table_extend.class.php (added)
-
tags/1.2.4/classes/saturn_tables_list_table_render.class.php (added)
-
tags/1.2.4/index.php (added)
-
tags/1.2.4/plugin_loader.php (added)
-
tags/1.2.4/readme.txt (added)
-
trunk/classes/saturn_tables_list_table_render.class.php (modified) (1 diff)
-
trunk/plugin_loader.php (modified) (1 diff)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
saturn-tables/trunk/classes/saturn_tables_list_table_render.class.php
r2445390 r2451983 112 112 if (isset($search) && is_array($search)) { 113 113 $search_label = isset($search['label']) ? $search['label'] : "Search"; 114 $search_id = isset($search['i s']) ? $search['is'] : "search_id";114 $search_id = isset($search['id']) ? $search['id'] : "search_id"; 115 115 $this->list_table_obj->search_box($search_label, $search_id); 116 116 } -
saturn-tables/trunk/plugin_loader.php
r2445390 r2451983 4 4 Plugin URI: https://saturntables.com 5 5 Description: 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. 36 Version: 1.2.4 7 7 Author: Brimbox LLC 8 8 License: GPL v2.0 -
saturn-tables/trunk/readme.txt
r2445506 r2451983 5 5 Requires at least: 5.0 6 6 Tested up to: 5.6 7 Stable tag: 1.2. 37 Stable tag: 1.2.4 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 14 14 == Description == 15 15 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 usuallyfor projects involving data outside the WordPress data structure.16 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. Designed for developers, this plugin is for projects involving data outside the WordPress data structure. 17 17 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. 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. 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. 25 19 26 20 == Frequently Asked Questions == … … 32 26 = What level of WordPress knowledge is needed? = 33 27 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.28 If 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. 35 29 36 30 = How do I get started? = 37 31 38 32 It 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.43 33 44 34 = Anything else I should know = … … 48 38 == Changelog == 49 39 40 = 1.2.4 = 41 * Small bug fix. 42 50 43 = 1.2.3 = 51 44 * Initial Release.
Note: See TracChangeset
for help on using the changeset viewer.