Changeset 3225195
- Timestamp:
- 01/19/2025 11:50:13 PM (14 months ago)
- Location:
- simple-table-manager
- Files:
-
- 18 added
- 14 deleted
- 1 edited
-
tags/1.6.1 (added)
-
tags/1.6.1/css (added)
-
tags/1.6.1/css/admin.css (added)
-
tags/1.6.1/includes (added)
-
tags/1.6.1/includes/add.php (added)
-
tags/1.6.1/includes/edit.php (added)
-
tags/1.6.1/includes/export-csv.php (added)
-
tags/1.6.1/includes/fields.php (added)
-
tags/1.6.1/includes/functions.php (added)
-
tags/1.6.1/includes/main.php (added)
-
tags/1.6.1/includes/settings.php (added)
-
tags/1.6.1/includes/table.php (added)
-
tags/1.6.1/languages (added)
-
tags/1.6.1/languages/simple-table-manager-es_ES.mo (added)
-
tags/1.6.1/languages/simple-table-manager-es_ES.po (added)
-
tags/1.6.1/languages/simple-table-manager.pot (added)
-
tags/1.6.1/readme.txt (added)
-
tags/1.6.1/simple-table-manager.php (added)
-
trunk/css/admin.css (deleted)
-
trunk/includes/add.php (deleted)
-
trunk/includes/columns.php (deleted)
-
trunk/includes/edit.php (deleted)
-
trunk/includes/export-csv.php (deleted)
-
trunk/includes/functions.php (deleted)
-
trunk/includes/list.php (deleted)
-
trunk/includes/main.php (deleted)
-
trunk/includes/settings.php (deleted)
-
trunk/includes/tables.php (deleted)
-
trunk/languages/simple-table-manager-es_ES.mo (deleted)
-
trunk/languages/simple-table-manager-es_ES.po (deleted)
-
trunk/languages/simple-table-manager.pot (deleted)
-
trunk/readme.txt (modified) (6 diffs)
-
trunk/simple-table-manager.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
simple-table-manager/trunk/readme.txt
r3003845 r3225195 2 2 Contributors: ryo0inoue, lorro 3 3 Tags: database, table, mysql, crud, export 4 Requires at least: 5.65 Tested up to: 6. 44 Requires at least: 6.2 5 Tested up to: 6.7 6 6 Requires PHP: 7.3 7 Stable tag: 1.6. 07 Stable tag: 1.6.1 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 10 11 Enables editing table records and exporting them to CSV files through a minimal database interface from your dashboard.11 Enables viewing and editing table records and exporting them to CSV files through a minimal database interface from your dashboard. 12 12 13 13 == Description == … … 19 19 * No knowledge of MySQL or PHP required 20 20 * Export table records to a CSV file 21 * Does not allow users to c hange the structure of the table21 * Does not allow users to create tables or change the structure of the table 22 22 23 Unlike 'full featured' database management plugins, it does not allow users to alter the structure of the table but requires no knowledge on MySQL or PHP.23 Simple Table Manager is a tool suited for the initial development phase of a website. It is ideal when you want to ask someone else with no database expertise to keep track of table records on your website. This was the motivation for developing this plugin. 24 24 25 Similar to CakePHP's scaffold feature, Simple Table Manager is an auxiliary tool suited for the initial development phase of a website. It is also ideal when you want to ask someone else with no database expertise to keep track of table records on your website. This was the motivation for developing this plugin. 25 Note that to comply with wordpress.org plugin security guidelines, edited and added record fields are filtered through wp_kses_post() to prevent sql injection attacks. In some cases, wanted tags may be filtered out leading to field corruption. 26 26 27 27 == Installation == … … 30 30 2. Or upload the entire 'simple-table-manager' folder to the '/wp-content/plugins/' directory. 31 31 3. Activate the plugin through the 'Plugins' menu in WordPress. 32 4. On the plugin's 'Settings' page, select the table you want to manage.32 4. On the plugin's 'Settings' page, select the table you want to view and manage. 33 33 34 34 Filter call examples for developer use: … … 103 103 104 104 == Changelog == 105 = 1.6.1 (2025-01-14) = 106 * Changes to meet wordpress.org plugin security guidelines 107 * Checked to work with WordPress 6.7 108 105 109 = 1.6.0 (2023-11-26) = 106 110 * Enhanced security and other changes to comply with wordpress.org plugin guidelines. … … 123 127 = Version 1.5.2 (2021-03-15) = 124 128 * Added a setting to pretty print any unserialized arrays on the Edit tab 125 * Added a filter example t sshow how to setup a checkbox input with the plugin129 * Added a filter example to show how to setup a checkbox input with the plugin 126 130 * Tested with WP v5.7 & PHP v8.0.2 127 131 … … 173 177 == Upgrade Notice == 174 178 175 = 1.6. 0 (2023-11-26) =176 * Enhanced security to comply with wordpress.org plugin guidelines.177 * Checked to work with WordPress 6. 4179 = 1.6.1 (2025-01-14) 180 * Changes to meet wordpress.org plugin security guidelines 181 * Checked to work with WordPress 6.7
Note: See TracChangeset
for help on using the changeset viewer.