pluggable
8 years ago
index.php
8 years ago
woocat_activation_wizard.php
8 years ago
woocat_admin_disabler.php
9 years ago
woocat_button.php
9 years ago
woocat_catalog.php
9 years ago
woocat_disabler.php
9 years ago
woocat_listing.php
6 years ago
woocat_page.php
6 years ago
woocat_settings.php
8 years ago
index.php
28 lines
| 1 | <?php |
| 2 | |
| 3 | if ( !defined( 'ABSPATH' ) ) { |
| 4 | exit; // Exit if accessed directly |
| 5 | } |
| 6 | /** |
| 7 | * Manages Discounts gateaway includes folder |
| 8 | * |
| 9 | * Here includes files are defined and managed. |
| 10 | * |
| 11 | * @version 1.0.0 |
| 12 | * @package woocommerce-catalog-mode/includes |
| 13 | * @author Norbert Dreszer |
| 14 | */ |
| 15 | require_once(IC_WOOCAT_BASE_PATH . '/includes/pluggable/index.php'); |
| 16 | require_once(IC_WOOCAT_BASE_PATH . '/includes/woocat_activation_wizard.php'); |
| 17 | require_once(IC_WOOCAT_BASE_PATH . '/includes/woocat_settings.php'); |
| 18 | require_once(IC_WOOCAT_BASE_PATH . '/includes/woocat_disabler.php'); |
| 19 | require_once(IC_WOOCAT_BASE_PATH . '/includes/woocat_button.php'); |
| 20 | if ( function_exists( 'impleCode_EPC' ) ) { |
| 21 | require_once(IC_WOOCAT_BASE_PATH . '/includes/woocat_catalog.php'); |
| 22 | require_once(IC_WOOCAT_BASE_PATH . '/includes/woocat_listing.php'); |
| 23 | require_once(IC_WOOCAT_BASE_PATH . '/includes/woocat_page.php'); |
| 24 | } |
| 25 | if ( is_admin() ) { |
| 26 | require_once(IC_WOOCAT_BASE_PATH . '/includes/woocat_admin_disabler.php'); |
| 27 | } |
| 28 |