79 lines
2.7 KiB
PHP
Executable File
79 lines
2.7 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Booster for WooCommerce - Module - Crowdfunding
|
|
*
|
|
* @version 2.8.0
|
|
* @since 2.2.6
|
|
* @author Algoritmika Ltd.
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit;
|
|
|
|
if ( ! class_exists( 'WCJ_Crowdfunding' ) ) :
|
|
|
|
class WCJ_Crowdfunding extends WCJ_Module {
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @version 2.8.0
|
|
*/
|
|
function __construct() {
|
|
|
|
$this->id = 'crowdfunding';
|
|
$this->short_desc = __( 'Crowdfunding', 'woocommerce-jetpack' );
|
|
$this->desc = __( 'Add crowdfunding products to WooCommerce.', 'woocommerce-jetpack' );
|
|
$this->link_slug = 'woocommerce-crowdfunding';
|
|
$this->extra_desc = __( 'When enabled, module will add Crowdfunding metabox to product edit.', 'woocommerce-jetpack' ) . '<br>' .
|
|
sprintf(
|
|
__( 'To add crowdfunding info to the product, use <a href="%s" target="_blank">Booster\'s crowdfunding shortcodes</a>.', 'woocommerce-jetpack' ),
|
|
'https://booster.io/category/shortcodes/products-crowdfunding/'
|
|
) . ' ' .
|
|
sprintf(
|
|
__( 'Shortcodes could be used for example in <a href="%s">Product Info module</a>.', 'woocommerce-jetpack' ),
|
|
admin_url( 'admin.php?page=wc-settings&tab=jetpack&wcj-cat=products§ion=product_custom_info' )
|
|
) . '<br>' .
|
|
sprintf(
|
|
__( 'To change add to cart button labels use <a href="%s">Add to Cart Labels module</a>.', 'woocommerce-jetpack' ),
|
|
admin_url( 'admin.php?page=wc-settings&tab=jetpack&wcj-cat=labels§ion=add_to_cart' )
|
|
);
|
|
parent::__construct();
|
|
|
|
if ( $this->is_enabled() ) {
|
|
|
|
add_action( 'add_meta_boxes', array( $this, 'add_meta_box' ) );
|
|
add_action( 'save_post_product', array( $this, 'save_meta_box' ), PHP_INT_MAX, 2 );
|
|
|
|
add_action( 'woocommerce_is_purchasable', array( $this, 'check_dates' ), PHP_INT_MAX, 2 );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* check_dates.
|
|
*
|
|
* @version 2.7.0
|
|
*/
|
|
function check_dates( $purchasable, $_product ) {
|
|
$_product_id = wcj_get_product_id_or_variation_parent_id( $_product );
|
|
$goal = get_post_meta( $_product_id, '_' . 'wcj_crowdfunding_goal_sum', true );
|
|
if ( 0 != $goal ) {
|
|
$start_date_str = get_post_meta( $_product_id, '_' . 'wcj_crowdfunding_startdate', true );
|
|
$end_date_str = get_post_meta( $_product_id, '_' . 'wcj_crowdfunding_deadline', true );
|
|
$start_date = ( '' != $start_date_str ) ? strtotime( $start_date_str ) : 0;
|
|
$end_date = ( '' != $end_date_str ) ? strtotime( $end_date_str ) : 0;
|
|
if ( $start_date > 0 && ( $start_date - current_time( 'timestamp' ) ) > 0 ) {
|
|
$purchasable = false;
|
|
}
|
|
if ( $end_date > 0 && ( $end_date - current_time( 'timestamp' ) ) < 0 ) {
|
|
$purchasable = false;
|
|
}
|
|
}
|
|
return $purchasable;
|
|
}
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
return new WCJ_Crowdfunding();
|