Stores
Logger Stores
Action Scheduler logging is handled by the ActionScheduler_Logger abstraction and two concrete implementations: ActionScheduler_DBLogger (custom tables) ActionScheduler_wpCommentLogger (legacy WP comments)...
Data Store Overview
This document describes Action Scheduler’s store abstraction (ActionScheduler_Store) and how to select or extend stores. Purpose of the Store Abstraction...
ActionScheduler_DBStore (Custom Tables)
ActionScheduler_DBStore is the default store implementation that persists actions in custom database tables. It lives in classes/data-stores/ActionScheduler_DBStore.php and extends the...
ActionScheduler_HybridStore (Migration Bridge)
ActionScheduler_HybridStore is a wrapper store that reads from two stores and migrates actions from the legacy store to the custom-table...
ActionScheduler_wpPostStore (Legacy WP Posts Store)
ActionScheduler_wpPostStore persists actions as a custom post type (scheduled-action) plus post meta and taxonomy data. It lives in classes/data-stores/ActionScheduler_wpPostStore.php and...