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
/
compatibility
/
WcMixAndMatch
:
Factory.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WCML\Compatibility\WcMixAndMatch; use WCML\Compatibility\ComponentFactory; use WCML\StandAlone\IStandAloneAction; use function WCML\functions\getSitePress; use function WCML\functions\isStandAlone; class Factory extends ComponentFactory implements IStandAloneAction { /** * @inheritDoc */ public function create() { $hooks = []; if ( wcml_is_multi_currency_on() ) { $hooks[] = new MulticurrencyHooks(); } if ( ! isStandAlone() ) { $hooks[] = new \WCML_Mix_And_Match_Products( getSitePress() ); } return $hooks; } }