# yayextra/trunk/includes/Integrations.php

YayExtra – WooCommerce Extra Product Options, version trunk. 36 lines.

- Page: https://pluginprobe.com/plugins/yayextra/trunk/code/includes/Integrations.php
- Raw: https://pluginprobe.com/plugins/yayextra/trunk/raw/includes/Integrations.php
- Modified: 2026-09-09T18:33:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/yayextra/trunk/code/includes/Integrations.php#L10-L20`.

```php
<?php
namespace YayExtra;

// use YayExtra\Integrations\YayCurrency;
use YayExtra\Integrations\WooCommerceNameYourPrice;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class Integrations {

	/**
	 * Instance of the Integrations class.
	 *
	 * @var Integrations
	 */
	protected static $instance = null;

	/**
	 * Function ensure only one instance created.
	 */
	public static function get_instance() {
		if ( is_null( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	public function __construct() {
		// new YayCurrency();
		new WooCommerceNameYourPrice();
	}
}


```
