PluginProbe ʕ •ᴥ•ʔ
Catalog Booster & Product Catalog Mode for WooCommerce / 1.0.12
Catalog Booster & Product Catalog Mode for WooCommerce v1.0.12
trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.3 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8
catalog-booster-for-woocommerce / includes / index.php
catalog-booster-for-woocommerce / includes Last commit date
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