File: /home/wellmix/public_html/wp-content/plugins/weglot/src/third/edd/class-edd-active.php
<?php
namespace WeglotWP\Third\Edd;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
use WeglotWP\Models\Third_Active_Interface_Weglot;
class Edd_Active implements Third_Active_Interface_Weglot {
/**
* WooCommerce is active ?
* @since 2.0
*
* @return boolean
*/
public function is_active() {
if ( ! function_exists( 'is_plugin_active' ) ) {
include_once ABSPATH . 'wp-admin/includes/plugin.php';
}
if ( ! is_plugin_active( 'easy-digital-downloads/easy-digital-downloads.php' ) ) {
return false;
}
return true;
}
}