WC_Helper::includes()protected staticWC 1.0

Include supporting helper classes.

Метод класса: WC_Helper{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = WC_Helper::includes();

Код WC_Helper::includes() WC 8.7.0

protected static function includes() {
	include_once dirname( __FILE__ ) . '/class-wc-helper-options.php';
	include_once dirname( __FILE__ ) . '/class-wc-helper-api.php';
	include_once dirname( __FILE__ ) . '/class-wc-helper-updater.php';
	include_once dirname( __FILE__ ) . '/class-wc-helper-plugin-info.php';
	include_once dirname( __FILE__ ) . '/class-wc-helper-compat.php';
	include_once dirname( __FILE__ ) . '/class-wc-helper-admin.php';
	include_once dirname( __FILE__ ) . '/class-wc-helper-subscriptions-api.php';
	include_once dirname( __FILE__ ) . '/class-wc-helper-orders-api.php';
}