' . esc_html__( 'Settings', 'inpost-for-woocommerce' ) . '', '' . __( 'Support InPost', 'inpost-for-woocommerce' ) . '', ); return array_merge( $plugin_links, $links ); } /** * Check if WooCommerce is activated */ if ( ! function_exists( 'easypack_is_woocommerce_activated' ) ) { function easypack_is_woocommerce_activated() { if ( function_exists( 'is_plugin_active' ) ) { if ( is_plugin_active( 'woocommerce/woocommerce.php' ) ) { return true; } } if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { return true; } if ( defined( 'WC_PLUGIN_FILE' ) && defined( 'WC_VERSION' ) ) { if ( version_compare( WC_VERSION, '5.5', '>=' ) ) { return true; } } return false; } } if ( ! function_exists( 'easypack_integrity_verified' ) ) { function easypack_integrity_verified() { if (class_exists('InspireLabs\WoocommerceInpost\admin\EasyPack_Shipment_Manager') && class_exists('InspireLabs\WoocommerceInpost\EasyPack_Helper') && class_exists('InspireLabs\WoocommerceInpost\EasyPack_AJAX') && class_exists('InspireLabs\WoocommerceInpost\EasyPack') ) { return true; } return false; } }