facebook-for-woocommerce
Last commit date
assets
2 years ago
data
3 years ago
i18n
2 years ago
includes
2 years ago
vendor
2 years ago
LICENSE
7 years ago
changelog.txt
2 years ago
class-wc-facebookcommerce.php
2 years ago
facebook-commerce-events-tracker.php
2 years ago
facebook-commerce-messenger-chat.php
2 years ago
facebook-commerce-pixel-event.php
2 years ago
facebook-commerce.php
2 years ago
facebook-config-warmer.php
3 years ago
facebook-for-woocommerce.php
2 years ago
readme.txt
2 years ago
facebook-config-warmer.php
20 lines
| 1 | <?php |
| 2 | // phpcs:ignoreFile |
| 3 | /** |
| 4 | * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved |
| 5 | * |
| 6 | * This source code is licensed under the license found in the |
| 7 | * LICENSE file in the root directory of this source tree. |
| 8 | * |
| 9 | * @package FacebookCommerce |
| 10 | */ |
| 11 | |
| 12 | defined( 'ABSPATH' ) || exit; |
| 13 | |
| 14 | class WC_Facebookcommerce_WarmConfig { |
| 15 | static $fb_warm_pixel_id = null; |
| 16 | static $fb_warm_is_advanced_matching_enabled = null; |
| 17 | static $fb_warm_use_s2s = null; |
| 18 | static $fb_warm_access_token = null; |
| 19 | } |
| 20 |