) . 'includes/data/class-tvc-taxonomies.php'; require_once plugin_dir_path(dirname(__FILE__)) . 'includes/class-tvc-register-scripts.php'; /** * The class responsible for defining all actions that occur in the admin area. */ require_once plugin_dir_path(dirname(__FILE__)) . 'admin/class-enhanced-ecommerce-google-analytics-admin.php'; /** * New conversios UI file list */ require_once plugin_dir_path(dirname(__FILE__)) . 'admin/class-conversios-onboarding.php'; require_once plugin_dir_path(dirname(__FILE__)) . 'admin/helper/class-onboarding-helper.php'; require_once plugin_dir_path(dirname(__FILE__)) . 'admin/helper/class-dashboard-helper.php'; require_once plugin_dir_path(dirname(__FILE__)) . 'admin/helper/class-reports-helper.php'; require_once plugin_dir_path(dirname(__FILE__)) . 'admin/helper/class-pmax-helper.php'; require_once plugin_dir_path(dirname(__FILE__)) . 'admin/class-conversios-admin.php'; /** * End New conversios UI file list */ require_once plugin_dir_path(dirname(__FILE__)) . 'admin/class-tvc-admin-auto-product-sync-helper.php'; require_once plugin_dir_path(dirname(__FILE__)) . 'admin/class-survey.php'; /** * The class responsible for defining all actions that occur in the public-facing * side of the site. */ if (!function_exists('is_plugin_active_for_network')) { require_once(ABSPATH . '/wp-admin/includes/woocommerce.php'); } /** * The class responsible for defining all Wordpress tracking OR Non-ecommerce tracking */ $TVC_Admin_Helper = new TVC_Admin_Helper(); require_once plugin_dir_path(dirname(__FILE__)) . 'public/class-enhanced-ecommerce-google-analytics-wordpress.php'; if (is_plugin_active_for_network('woocommerce/woocommerce.php') || in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) { require_once plugin_dir_path(dirname(__FILE__)) . 'public/class-enhanced-ecommerce-google-analytics-public.php'; } /** * Register all actions and filters for the plugin. */ $this->loader = new Enhanced_Ecommerce_Google_Analytics_Loader(); } /** * Define the locale for this plugin for internationalization. * * Uses the Enhanced_Ecommerce_Google_Analytics_i18n class in order to set the domain and to register the hook * with WordPress. * * @since 1.0.0 * @access private */ private function set_locale() { $plugin_i18n = new Enhanced_Ecommerce_Google_Analytics_i18n(); $this->loader->add_action('plugins_loaded', $plugin_i18n, 'load_plugin_textdomain'); } /** * Register all of the hooks related to the admin area functionality * of the plugin. * * @since 1.0.0 * @access private */ private function define_admin_hooks() { $plugin_admin = new Enhanced_Ecommerce_Google_Analytics_Admin($this->get_plugin_name(), $this->get_version()); $this->loader->add_action('admin_enqueue_scripts', $plugin_admin, 'enqueue_styles'); $this->loader->add_action('admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts'); $this->loader->add_action('admin_notice_message', $plugin_admin, 'tvc_add_admin_notice'); $this->loader->add_action('admin_notices', $plugin_admin, 'tvc_display_admin_notices'); $this->loader->add_action('admin_notices', $plugin_admin, 'tvc_add_data_admin_notice'); $this->loader->add_action('admin_notices', $plugin_admin, 'convtvc_admin_notice'); if (is_admin()) { new TVC_Survey(esc_html__("Enhanced ecommerce google analytics plugin for woocommerce","enhanced-e-commerce-for-woocommerce-store"), ENHANCAD_PLUGIN_NAME); } } /** * Register all of the hooks related to the public-facing functionality * of the plugin. * * @since 1.0.0 * @access private */ public function define_public_hooks() { new Enhanced_Ecommerce_Google_Analytics_Wordpress($this->get_plugin_name(), $this->get_version()); if (is_plugin_active_for_network('woocommerce/woocommerce.php') || in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) { new Enhanced_Ecommerce_Google_Analytics_Public($this->get_plugin_name(), $this->get_version()); } } /** * Run the loader to execute all of the hooks with WordPress. * * @since 1.0.0 */ public function run() { $this->loader->run(); if ( is_plugin_active_for_network( 'woocommerce/woocommerce.php') || in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ){ add_action('woocommerce_init' , function (){ $this->loader->run(); }); } else{ include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if ( is_plugin_active( 'woocommerce/woocommerce.php' ) || is_plugin_active_for_network( 'woocommerce/woocommerce.php') ) { $this->loader->run(); }else if( is_admin() && !is_network_admin() && is_plugin_active( 'enhanced-e-commerce-for-woocommerce-store/enhanced-ecommerce-google-analytics.php' ) ){ $this->loader->run(); } } } /** * The name of the plugin used to uniquely identify it within the context of * WordPress and to define internationalization functionality. * * @since 1.0.0 * @return string The name of the plugin. */ public function get_plugin_name() { return $this->plugin_name; } /** * The reference to the class that orchestrates the hooks with the plugin. * * @since 1.0.0 * @return Enhanced_Ecommerce_Google_Analytics_Loader Orchestrates the hooks of the plugin. */ public function get_loader() { return $this->loader; } /** * Retrieve the version number of the plugin. * * @since 1.0.0 * @return string The version number of the plugin. */ public function get_version() { return $this->version; } public function tvc_plugin_action_links($links) { $deactivate_link = $links['deactivate']; unset($links['deactivate']); $setting_url = esc_url('admin.php?page=conversios'); $links[] = '' . esc_html__("Configuration", "enhanced-e-commerce-for-woocommerce-store") . ''; $links[] = '' . esc_html__("FAQ", "enhanced-e-commerce-for-woocommerce-store") . ''; $links[] = '' . esc_html__("Documentation", "enhanced-e-commerce-for-woocommerce-store") . ''; $links[] = '' . esc_html__("Upgrade to Premium", "enhanced-e-commerce-for-woocommerce-store") . ''; $links['deactivate'] = $deactivate_link; return $links; } /** * Check Enhance E-commerce Plugin is Activated * Free Plugin */ public function check_dependency() { if (function_exists('run_actionable_google_analytics')) { printf('
%s%s