Nice: Working excellent, MUST read the docs first!
-
That’s an interesting plugin and it definitely deserves either 5 stars (if you are a programmer with high IQ) or 1 star (if you are not). LOL
The author made a nice tool but it’s a nice only if you know what to do and have time to look trough his code if needed.One question – is there any way to add pagination, let say if I have a table with 20K records to prevent it loading as a whole in the admin panel? If not is there an easy way to accomplish this (being able to perform a search on the whole table if needed), thanks.EDIT (for those that don’t like to read docs):
– to enable the plugin capabilities (to appear in the Admin menu) you must have the table defined already in the database and in functions.php (or elsewhere) to add at least a single line of code (example at the end);
– to be able to add new lines, there should be a column “ID” or if it is different, to use the specific config rule;
– the pagination is not needed at all – it’s super fast with large tables (>20K lines).Example code to enable the plugin in theme’s functions.php:
if(function_exists('add_db_table_editor')){ add_db_table_editor('title=THE_TITLE_FOR_ADMIN_AREA&table=the_table_name'); }
- The topic ‘Nice: Working excellent, MUST read the docs first!’ is closed to new replies.