| 1 |
<?php |
| 2 |
|
| 3 |
namespace RadiusTheme\SB\Modules\WishList; |
| 4 |
|
| 5 |
use RadiusTheme\SB\Traits\SingletonTrait; |
| 6 |
|
| 7 |
// Do not allow directly accessing this file. |
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
exit( 'This script cannot be accessed directly.' ); |
| 10 |
} |
| 11 |
|
| 12 |
final class Wishlist { |
| 13 |
|
| 14 |
const KEY = 'rtsb_wishlist'; |
| 15 |
// const WC_MENU_SLUG = 'wishlist'; |
| 16 |
|
| 17 |
/** |
| 18 |
* @var array |
| 19 |
*/ |
| 20 |
public $settings = []; |
| 21 |
|
| 22 |
//protected $module_id = 'wishlist'; |
| 23 |
|
| 24 |
use SingletonTrait; |
| 25 |
|
| 26 |
private function __construct() { |
| 27 |
|
| 28 |
new WishlistRouteV1(); |
| 29 |
|
| 30 |
WishlistFrontEnd::instance(); |
| 31 |
|
| 32 |
if ( is_user_logged_in() ) { |
| 33 |
$cookie_name = WishlistFns::instance()->get_cookie_name(); |
| 34 |
if ( isset( $_COOKIE[ $cookie_name ] ) && is_array( json_decode( wp_unslash( $_COOKIE[ $cookie_name ] ), true ) ) ) { |
| 35 |
|
| 36 |
$ids = WishlistFns::instance()->get_wishlist_ids(); |
| 37 |
$product_ids = []; |
| 38 |
foreach ( $ids as $pid ) { |
| 39 |
$product_ids[ $pid ] = $pid; |
| 40 |
} |
| 41 |
WishlistFns::instance()->update_user_wishlist_ids( $product_ids ); |
| 42 |
setcookie( self::KEY, '', time() - 3600, '/' ); |
| 43 |
} |
| 44 |
} |
| 45 |
|
| 46 |
add_action( |
| 47 |
'init', |
| 48 |
function () { |
| 49 |
add_rewrite_endpoint( WishlistFns::WC_MENU_SLUG, EP_ROOT | EP_PAGES ); |
| 50 |
} |
| 51 |
); |
| 52 |
|
| 53 |
add_filter( 'woocommerce_account_menu_items', [ $this, 'add_to_menu' ], 40 ); |
| 54 |
add_action( 'woocommerce_account_wishlist_endpoint', [ $this, 'wishlist_content' ] ); |
| 55 |
|
| 56 |
do_action( 'rtsb/module/wishlist/loaded' ); |
| 57 |
} |
| 58 |
|
| 59 |
/** |
| 60 |
* @param $menu_links |
| 61 |
* |
| 62 |
* @return mixed |
| 63 |
*/ |
| 64 |
public function add_to_menu( $menu_links ) { |
| 65 |
|
| 66 |
$menu_links[ WishlistFns::WC_MENU_SLUG ] = esc_html__( 'Wishlist', 'shopbuilder' ); |
| 67 |
|
| 68 |
if ( isset( $menu_links['customer-logout'] ) ) { |
| 69 |
|
| 70 |
$logout = $menu_links['customer-logout']; |
| 71 |
unset( $menu_links['customer-logout'] ); |
| 72 |
$menu_links['customer-logout'] = $logout; |
| 73 |
} else { |
| 74 |
$menu_links['customer-logout'] = esc_html__( 'Logout', 'shopbuilder' ); |
| 75 |
} |
| 76 |
|
| 77 |
return $menu_links; |
| 78 |
} |
| 79 |
|
| 80 |
public function wishlist_content() { |
| 81 |
echo do_shortcode( '[rtsb_wishlist]' ); |
| 82 |
} |
| 83 |
} |
| 84 |
|