• File: Config.php
  • Full Path: /home/lef/public_html/wp-content/plugins/woocommerce-multilingual/classes/Container/Config.php
  • File size: 818 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace WCML\Container;

class Config {

	public static function getSharedInstances() {
		global $woocommerce_wpml;

		return [
			$woocommerce_wpml,
		];
	}

	public static function getSharedClasses() {
		return [
			\WCML_Currencies_Payment_Gateways::class,
			\WCML_Dependencies::class,
			\WCML_Exchange_Rates::class,
			\WCML_Multi_Currency::class,
		];
	}

	/**
	 * Replaces global $sitepress with null object.
	 *
	 * @return array
	 */
	public static function getAliases() {
		return [
			\WPML\Core\ISitePress::class => \WCML\functions\isStandAlone()
						? \WCML\StandAlone\NullSitePress::class
						: \SitePress::class,
		];
	}

	/**
	 * @return array
	 */
	public static function getDelegated() {
		return [
			\WCML_Exchange_Rates::class => [ \WCML_Exchange_Rates::class, 'create' ],
		];
	}
}