narmafzam/custom-table

Installs: 44

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 11

Type:project

1.1.5 2020-02-21 20:48 UTC

This package is auto-updated.

Last update: 2024-04-22 06:03:40 UTC


README

Custom Tables (CT) is a WordPress developers toolkit to handle custom database table workflow similar to WordPress CPT.

Check example.php file included on this project to see a few examples to get it working.

CT has been developed as internal library for GamiPress plugin in order to bring to GamiPress's logs and user earnings tables the same features as WordPress post types (admin UI, cached query, rest API endpoints, etc).

Important: CT public API is in development phase, this means current version is unstable and much of the current features will change. To use this library on live project be sure you know you are doing!

Contributions are really appreciated! Looking for help to standarize functions and hooks as well as for documentation.

Features (work in progress)

Custom table registration:

  • Custom table registration (like registering a WordPress post type)
  • Automatic table creation if not exists
  • Easy field definition
  • Schema parser
  • Automatic schema updater (yay!)
  • Ability to show or hide from admin UI (disable UI for a desired table)
  • Custom Capabilities (with support for administrators)
  • Meta data functionality
  • Query class to handled cached queries (like WP_Query but for custom tables)
  • Rest API support (custom table and meta data)

List view (with features similar to WP tables):

  • Pagination
  • Search
  • Sortable Columns
  • Bulk actions
  • User screen settings
  • List view views
  • Trash functionality?
  • Delete Permanently action

Edit View (similar to WP edit screen):

  • Meta boxes
  • Screen options
  • Show hide Meta boxes
  • Allow user to toggle view columns
  • Allow define edit view columns (to force to 1 column)
  • Delete Permanently action

Other features

Plugins

  • Ajax List Table: Utility to render a Custom Tables (CT) List Table with ajax searching and pagination.
  • Rest API Docs: Rest API docs generator for Custom Tables (CT).