PATH:
home
/
thebhoeo
/
public_html
/
wp-content
/
themes
/
woodmart
/
inc
/
integrations
/
woocommerce
/
modules
/
waitlist
<?php /** * Waitlist class. * * @package woodmart */ namespace XTS\Modules\Waitlist; use XTS\Admin\Modules\Options; use XTS\Modules\Managers\Module_Endpoints_Manager; use WC_Product; /** * Waitlist class. */ class Main { /** * DB_Storage instance. * * @var DB_Storage */ protected $db_storage; /** * Constructor. */ public function __construct() { add_action( 'init', array( $this, 'add_options' ) ); woodmart_include_files( __DIR__, $this->get_include_files() ); if ( woodmart_get_opt( 'waitlist_enabled' ) && woodmart_woocommerce_installed() ) { $this->define_constants(); $this->db_storage = DB_Storage::get_instance(); add_action( 'init', array( $this, 'add_endpoint_options' ) ); add_action( 'before_delete_post', array( $this->db_storage, 'unsubscribe_by_product_id' ) ); add_action( 'woodmart_remove_not_confirmed_emails', array( $this->db_storage, 'remove_not_confirmed_emails' ) ); add_action( 'init', array( $this, 'schedule_cron_event' ) ); } } /** * Schedule cron event on init hook. * * @return void */ public function schedule_cron_event() { if ( ! wp_next_scheduled( 'woodmart_remove_not_confirmed_emails' ) ) { wp_schedule_event( time(), apply_filters( 'woodmart_remove_not_confirmed_emails_time', 'daily' ), 'woodmart_remove_not_confirmed_emails' ); } } /** * Add options in theme settings. */ public function add_options() { Options::add_field( array( 'id' => 'waitlist_enabled', 'name' => esc_html__( 'Enable "Waitlist"', 'woodmart' ), 'hint' => '<video data-src="' . WOODMART_TOOLTIP_URL . 'waitlist_enabled.mp4" autoplay loop muted></video>', 'description' => esc_html__( 'Activate this option to allow customers to join a waitlist for out-of-stock products, ensuring they are notified when the items become available again.', 'woodmart' ), 'type' => 'switcher', 'section' => 'waitlist_section', 'default' => '0', 'on-text' => esc_html__( 'Yes', 'woodmart' ), 'off-text' => esc_html__( 'No', 'woodmart' ), 'tags' => array( esc_html__( 'back in stock', 'woodmart' ), esc_html__( 'notify me', 'woodmart' ), esc_html__( 'out of stock alerts', 'woodmart' ), esc_html__( 'lead generation', 'woodmart' ), ), 'priority' => 10, 'class' => 'xts-preset-field-disabled', ) ); Options::add_field( array( 'id' => 'waitlist_for_loggined', 'name' => esc_html__( 'Login to see waitlist', 'woodmart' ), 'description' => esc_html__( 'Restrict the waitlist feature to logged-in users, ensuring that only registered customers can join the waitlist for out-of-stock products.', 'woodmart' ), 'type' => 'switcher', 'section' => 'waitlist_section', 'default' => '0', 'on-text' => esc_html__( 'Yes', 'woodmart' ), 'off-text' => esc_html__( 'No', 'woodmart' ), 'priority' => 20, 'class' => 'xts-preset-field-disabled', ) ); Options::add_field( array( 'id' => 'waitlist_form_state', 'name' => esc_html__( 'Initial state', 'woodmart' ), 'description' => esc_html__( 'Choose the default display for the waitlist feature: either show the form for joining the waitlist or display the current status (joined or not).', 'woodmart' ), 'type' => 'buttons', 'section' => 'waitlist_section', 'options' => array( 'always_open' => array( 'name' => esc_html__( 'Always open', 'woodmart' ), 'value' => 'always_open', ), 'current_state' => array( 'name' => esc_html__( 'Current state', 'woodmart' ), 'value' => 'current_state', ), ), 'default' => 'current_state', 'priority' => 30, 'class' => 'xts-preset-field-disabled', ) ); Options::add_field( array( 'id' => 'waitlist_fragments_enable', 'name' => esc_html__( 'Enable fragments updating', 'woodmart' ), 'description' => esc_html__( 'Activate this setting to ensure that waitlist form is updated correctly when caching is enabled, maintaining accurate waitlist information on the product page.', 'woodmart' ), 'type' => 'switcher', 'section' => 'waitlist_section', 'default' => '0', 'on-text' => esc_html__( 'Yes', 'woodmart' ), 'off-text' => esc_html__( 'No', 'woodmart' ), 'priority' => 40, 'class' => 'xts-preset-field-disabled', 'requires' => array( array( 'key' => 'waitlist_form_state', 'compare' => 'equals', 'value' => 'always_open', ), ), ) ); Options::add_field( array( 'id' => 'waitlist_wait_interval', 'name' => esc_html__( 'Wait interval', 'woodmart' ), 'description' => esc_html__( 'Sets how often the action repeats to send a batch of emails. You can choose the time gap between each send.', 'woodmart' ), 'type' => 'select', 'section' => 'waitlist_section', 'options' => array( strval( MINUTE_IN_SECONDS ) => array( 'name' => esc_html__( 'Minute', 'woodmart' ), 'value' => strval( MINUTE_IN_SECONDS ), ), strval( MINUTE_IN_SECONDS * 10 ) => array( 'name' => esc_html__( '10 Minutes', 'woodmart' ), 'value' => strval( MINUTE_IN_SECONDS * 10 ), ), strval( HOUR_IN_SECONDS ) => array( 'name' => esc_html__( 'Hour', 'woodmart' ), 'value' => strval( HOUR_IN_SECONDS ), ), strval( HOUR_IN_SECONDS * 2 ) => array( 'name' => esc_html__( '2 Hours', 'woodmart' ), 'value' => strval( HOUR_IN_SECONDS * 2 ), ), strval( HOUR_IN_SECONDS * 5 ) => array( 'name' => esc_html__( '5 Hours', 'woodmart' ), 'value' => strval( HOUR_IN_SECONDS * 5 ), ), strval( DAY_IN_SECONDS ) => array( 'name' => esc_html__( 'Day', 'woodmart' ), 'value' => strval( DAY_IN_SECONDS ), ), ), 'default' => strval( HOUR_IN_SECONDS ), 'priority' => 45, 'class' => 'xts-preset-field-disabled', ) ); Options::add_field( array( 'id' => 'waitlist_enable_privacy_checkbox', 'name' => esc_html__( 'Enable privacy policy checkbox', 'woodmart' ), 'hint' => '<video data-src="' . WOODMART_TOOLTIP_URL . 'waitlist_enable_privacy_checkbox.mp4" autoplay loop muted></video>', 'description' => esc_html__( 'Activate this setting to require customers to agree to your privacy policy with a checkbox before they can join the waitlist for out-of-stock products.', 'woodmart' ), 'type' => 'switcher', 'section' => 'waitlist_section', 'default' => '1', 'on-text' => esc_html__( 'Yes', 'woodmart' ), 'off-text' => esc_html__( 'No', 'woodmart' ), 'priority' => 50, 'class' => 'xts-preset-field-disabled', ) ); Options::add_field( array( 'id' => 'waitlist_privacy_checkbox_text', 'name' => esc_html__( 'Privacy checkbox text', 'woodmart' ), 'description' => esc_html__( 'Specify the text that will appear next to the privacy policy checkbox, informing customers about the policy they need to agree to before joining the waitlist. You can use the shortcode [terms] and [privacy_policy]', 'woodmart' ), 'type' => 'textarea', 'wysiwyg' => false, 'section' => 'waitlist_section', 'empty_option' => true, 'default' => wp_kses( __( 'I have read and accept the <strong>[privacy_policy]</strong>', 'woodmart' ), array( 'strong' => array() ) ), 'priority' => 60, 'requires' => array( array( 'key' => 'waitlist_enable_privacy_checkbox', 'compare' => 'equals', 'value' => '1', ), ), ) ); } /** * Get list of module include files. * * @return array */ protected function get_include_files() { $files = array(); if ( ! class_exists( 'WP_List_Table' ) ) { $files[] = ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; } $files = array_merge( $files, array( './class-db-storage', './class-emails', './class-admin', './class-frontend', './list-tables/class-waitlist-table', './list-tables/class-users-table', ) ); return $files; } /** * Add endpoint options for the module. */ public function add_endpoint_options() { $endpoints_manager = Module_Endpoints_Manager::get_instance(); $endpoints_manager->add_endpoint_options( array( 'title' => esc_html__( 'Waitlist', 'woodmart' ), 'desc' => esc_html__( 'Endpoint for the "My account → Waitlist" page.', 'woodmart' ), 'id' => 'woodmart_myaccount_waitlist_endpoint', 'type' => 'text', 'default' => 'waitlist', 'desc_tip' => true, 'priority' => 10, ) ); } /** * Define constants. */ protected function define_constants() { if ( ! defined( 'WOODMART_WAITLIST_DIR' ) ) { define( 'WOODMART_WAITLIST_DIR', WOODMART_THEMEROOT . '/inc/integrations/woocommerce/modules/waitlist/' ); } } } new Main();
[+]
list-tables
[-] class-db-storage.php
[edit]
[-] class-frontend.php
[edit]
[+]
emails
[-] class-admin.php
[edit]
[-] class-emails.php
[edit]
[+]
..
[-] class-main.php
[edit]