PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/antonkerr/www/daltonstours.com/wp-content/plugins/woocommerce-pdf-invoices/
Server: Linux premium47.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
IP: 68.65.123.244
Choose File :

Url:
Dir : /home/antonkerr/www/daltonstours.com/wp-content/plugins/woocommerce-pdf-invoices/bootstrap.php

<?php
/**
 * Plugin Name:             Invoices for WooCommerce
 * Plugin URI:              https://wordpress.org/plugins/woocommerce-pdf-invoices
 * Description:             Automatically generate and attach customizable PDF Invoices to WooCommerce emails and connect with Dropbox, Google Drive, OneDrive or Egnyte.
 * Version:                 3.2.1
 * Author:                  George Ciobanu
 * License:                 GPL-2.0+
 * License URI:             http://www.gnu.org/licenses/gpl-2.0.txt
 * Text Domain:             woocommerce-pdf-invoices
 * Domain Path:             /lang
 * Requires Plugins:        woocommerce
 */

defined( 'ABSPATH' ) || exit;

define( 'WPI_VERSION', '3.2.1' );

/**
 * Load Invoices for WooCommerce plugin.
 */
function _bewpi_load_plugin() {
	if ( ! class_exists( 'WooCommerce' ) ) {
		return;
	}

	if ( ! defined( 'WPI_FILE' ) ) {
		define( 'WPI_FILE', __FILE__ );
	}

	if ( ! defined( 'WPI_DIR' ) ) {
		define( 'WPI_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
	}

	if ( ! defined( 'WPI_URL' ) ) {
		define( 'WPI_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
	}

	if ( file_exists( WPI_DIR . '/vendor/autoload.php' ) ) {
		require_once WPI_DIR . '/vendor/autoload.php';
	}

	/**
	 * Main instance of BE_WooCommerce_PDF_Invoices.
	 *
	 * @return BE_WooCommerce_PDF_Invoices
	 * @since  2.9.1
	 */
	function WPI() {
		return BE_WooCommerce_PDF_Invoices::instance();
	}

	WPI();

	if ( is_admin() ) {
		add_action( 'admin_init', '_bewpi_on_plugin_update' );
	}
}

add_action( 'plugins_loaded', '_bewpi_load_plugin', 10 );

/**
 * On plugin update.
 *
 * @since 2.5.0
 */
function _bewpi_on_plugin_update() {
	// As per 3.0.9 we need to change the company logo to the attachment id.
	$company_logo_url = WPI()->get_option( 'template', 'company_logo' );
	if ( version_compare( WPI_VERSION, '3.0.9' ) >= 0 && ! empty( $company_logo_url ) && filter_var( $company_logo_url, FILTER_VALIDATE_URL ) ) {
		$template_settings                       = get_option( 'bewpi_template_settings' );
		$template_settings['bewpi_company_logo'] = (string) attachment_url_to_postid( $company_logo_url );
		update_option( 'bewpi_template_settings', $template_settings );
	}

	if ( WPI_VERSION !== get_site_option( 'bewpi_version' ) ) {
		WPI()->setup_directories();
		WPI()->setup_options();

		update_site_option( 'bewpi_version', WPI_VERSION );
	}
}

/**
 * Save install date, plugin version to db and set transient to show activation notice.
 *
 * @since 2.5.0
 */
function _bewpi_on_plugin_activation() {
	add_site_option( 'bewpi_install_date', current_time( 'mysql' ) );
	set_transient( 'bewpi-admin-notice-activation', true, 30 );
}

register_activation_hook( __FILE__, '_bewpi_on_plugin_activation' );

/**
 * Plugin uninstall hook.
 */
function _bewpi_on_plugin_uninstall() {
	delete_site_option( 'bewpi_version' );
}
register_uninstall_hook( __FILE__, '_bewpi_on_plugin_uninstall' );