Tribe__Tickets_Plus__Commerce__WooCommerce__Main::__construct()
Class constructor
Source
File: src/Tribe/Commerce/WooCommerce/Main.php
public function __construct() {
/* Set up parent vars */
$this->plugin_name = $this->pluginName = _x( 'WooCommerce', 'ticket provider', 'event-tickets-plus' );
$this->plugin_slug = $this->pluginSlug = 'wootickets';
$this->plugin_path = $this->pluginPath = trailingslashit( EVENT_TICKETS_PLUS_DIR );
$this->plugin_dir = $this->pluginDir = trailingslashit( basename( $this->plugin_path ) );
$this->plugin_url = $this->pluginUrl = trailingslashit( plugins_url( $this->plugin_dir ) );
parent::__construct();
$this->bind_implementations();
$this->hooks();
$this->orders_report();
$this->global_stock();
$this->meta();
$this->settings();
}