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
/
Multicurrency
/
Resolver
:
ResolverForDefault.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WCML\MultiCurrency\Resolver; class ResolverForDefault implements Resolver { /** * We consider that we should always be able to resolve a currency * for any customer. * * If no currency could be found in the previous steps, we'll * fall back to the default WC currency. * * @inheritDoc */ public function getClientCurrency() { return wcml_get_woocommerce_currency_option(); } }