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
/
HomeScreen
:
Factory.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WCML\HomeScreen; use WCML\StandAlone\IStandAloneAction; class Factory implements \IWPML_Backend_Action_Loader, IStandAloneAction { /** * @return \IWPML_Action|null */ public function create() { if ( wcml_is_multi_currency_on() ) { return new Hooks(); } return null; } }