oont-contents/plugins/woo-order-export-lite/woo-order-export-lite.php
2025-02-08 15:10:23 +01:00

106 lines
No EOL
4 KiB
PHP

<?php
/**
* Plugin Name: Advanced Order Export For WooCommerce
* Plugin URI:
* Description: Export WooCommerce orders to Excel/CSV/XML/JSON/PDF/TSV
* Author: AlgolPlus
* Author URI: https://algolplus.com/
* Version: 3.5.6
* Text Domain: woo-order-export-lite
* Domain Path: /i18n/languages/
* WC requires at least: 4.0.0
* WC tested up to: 9.3
*
* Copyright: (c) 2015 AlgolPlus LLC. (algol.plus@gmail.com)
*
* License: GNU General Public License v3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*
* @package woo-order-export-lite
* @author AlgolPlus LLC
* @Category Plugin
* @copyright Copyright (c) 2015 AlgolPlus LLC
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License v3.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
} // Exit if accessed directly
//Stop if another version is active!
if ( class_exists( 'WC_Order_Export_Admin' ) ) {
add_action( 'admin_notices', function () {
?>
<div class="notice notice-warning is-dismissible">
<p><?php _e( 'Please, <a href="plugins.php">deactivate</a> Free version of Advanced Order Export For WooCommerce!',
'woo-order-export-lite' ); ?></p>
</div>
<?php
});
return;
}
if ( ! defined( 'WOE_VERSION' ) ) {
define( 'WOE_VERSION', '3.5.6' );
define( 'WOE_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
define( 'WOE_PLUGIN_BASEPATH', dirname( __FILE__ ) );
define( 'WOE_PLUGIN_PATH', __FILE__ );
}
$extension_file = WOE_PLUGIN_BASEPATH.'/pro_version/pre-loader.php';
if ( file_exists( $extension_file ) ) {
include_once $extension_file;
}
// a small function to check startup conditions
if ( ! function_exists( "woe_check_running_options" ) ) {
function woe_check_running_options() {
$is_backend = is_admin();
return apply_filters('woe_check_running_options', $is_backend);
}
}
if ( ! woe_check_running_options() ) {
return;
} //don't load for frontend !
include 'classes/admin/tabs/ajax/trait-wc-order-export-ajax-helpers.php';
include 'classes/admin/tabs/ajax/trait-wc-order-export-admin-tab-abstract-ajax-filters.php';
include 'classes/admin/tabs/ajax/trait-wc-order-export-admin-tab-abstract-ajax-export.php';
include 'classes/admin/tabs/ajax/trait-wc-order-export-admin-tab-abstract-ajax.php';
include 'classes/admin/tabs/ajax/class-wc-order-export-ajax.php';
include 'classes/admin/tabs/class-wc-order-export-admin-tab-abstract.php';
include 'classes/admin/tabs/class-wc-order-export-admin-tab-export-now.php';
include 'classes/admin/tabs/class-wc-order-export-admin-tab-help.php';
include 'classes/admin/tabs/class-wc-order-export-admin-tab-profiles.php';
include 'classes/admin/tabs/class-wc-order-export-admin-tab-schedule-jobs.php';
include 'classes/admin/tabs/class-wc-order-export-admin-tab-status-change-jobs.php';
include 'classes/admin/tabs/class-wc-order-export-admin-tab-tools.php';
include 'classes/admin/class-wc-order-export-settings.php';
include 'classes/admin/class-wc-order-export-manage.php';
include 'classes/admin/class-wc-order-export-labels.php';
include 'classes/core/class-wc-order-export-engine.php';
include 'classes/core/trait-woe-core-extractor.php';
include 'classes/core/trait-woe-core-extractor-ui.php';
if ( get_option("woocommerce_custom_orders_table_enabled") == 'yes') {
include 'classes/core-hpos/class-wc-order-export-data-extractor.php';
include 'classes/core-hpos/class-wc-order-export-data-extractor-ui.php';
} else {
include 'classes/core/class-wc-order-export-data-extractor.php';
include 'classes/core/class-wc-order-export-data-extractor-ui.php';
}
include 'classes/class-wc-order-export-admin.php';
$extension_file = WOE_PLUGIN_BASEPATH.'/pro_version/loader.php';
if ( file_exists( $extension_file ) ) {
include_once $extension_file;
}
$wc_order_export = new WC_Order_Export_Admin();
register_deactivation_hook( __FILE__, array( $wc_order_export, 'deactivate' ) );
// fight with ugly themes which add empty lines
if ( $wc_order_export->must_run_ajax_methods() AND ! ob_get_level() ) {
ob_start();
}
//Done