PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
mycred
/
addons
/
gateway
<?php /** * Addon: Gateway * Addon URI: http://codex.mycred.me/chapter-iii/gateway/ * Version: 1.4 */ if ( ! defined( 'myCRED_VERSION' ) ) exit; define( 'myCRED_GATE', __FILE__ ); define( 'myCRED_GATE_DIR', myCRED_ADDONS_DIR . 'gateway/' ); define( 'myCRED_GATE_ASSETS_DIR', myCRED_GATE_DIR . 'assets/' ); define( 'myCRED_GATE_CART_DIR', myCRED_GATE_DIR . 'carts/' ); define( 'myCRED_GATE_EVENT_DIR', myCRED_GATE_DIR . 'event-booking/' ); define( 'myCRED_GATE_MEMBER_DIR', myCRED_GATE_DIR . 'membership/' ); define( 'myCRED_GATE_AFFILIATE_DIR', myCRED_GATE_DIR . 'affiliate/' ); /** * Supported Carts */ require_once myCRED_GATE_CART_DIR . 'mycred-woocommerce.php'; require_once myCRED_GATE_CART_DIR . 'mycred-wpecommerce.php'; /** * Event Espresso */ function mycred_load_event_espresso3() { if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) return; require_once myCRED_GATE_EVENT_DIR . 'mycred-eventespresso3.php'; $gateway = new myCRED_Espresso_Gateway(); $gateway->load(); } add_action( 'mycred_init', 'mycred_load_event_espresso3' ); /** * Events Manager */ function mycred_load_events_manager() { if ( ! defined( 'EM_VERSION' ) ) return; // Free only if ( ! class_exists( 'EM_Pro' ) ) { require_once myCRED_GATE_EVENT_DIR . 'mycred-eventsmanager.php'; $events = new myCRED_Events_Manager_Gateway(); $events->load(); } } add_action( 'mycred_init', 'mycred_load_events_manager' );
[+]
..
[+]
event-booking
[-] index.php
[edit]
[+]
carts
[+]
membership
[-] myCRED-addon-gateway.php
[edit]