Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
woocommerce-multilingual
/
classes
/
Container
:
Config.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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' ], ]; } }