chore(06-02): download and include Action Scheduler library

- Downloaded Action Scheduler 3.9.3 from GitHub
- Placed in vendor/action-scheduler/ directory
- Included in main plugin file before other code for proper initialization
- Library will auto-initialize itself when required
This commit is contained in:
2026-01-14 21:03:48 +09:00
parent fd88dcf025
commit 48f270f6a5
102 changed files with 17820 additions and 0 deletions

View File

@@ -19,6 +19,10 @@
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
// Load Action Scheduler before other code for proper initialization.
// Action Scheduler must be included early so it can register its hooks and tables.
require_once plugin_dir_path( __FILE__ ) . 'vendor/action-scheduler/action-scheduler.php';
// Define plugin constants.
define( 'DDHH_JM_VERSION', '1.0.0' );
define( 'DDHH_JM_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );