# learnpress/4.4.8/config/setup-wizard/currency-presets.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.8. 27 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.8/code/config/setup-wizard/currency-presets.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.8/raw/config/setup-wizard/currency-presets.php
- Modified: 2026-09-18T11:22:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.4.8/code/config/setup-wizard/currency-presets.php#L10-L20`.

```php
<?php
/**
 * Currency Preset for setup wizard
 */
return array(
	'USD' => array(
		'flag' => '🇺🇸',
		'label' => 'USD ($)',
	),
	'GBP' => array(
		'flag' => '🇬🇧',
		'label' => 'GBP (£)',
	),
	'EUR' => array(
		'flag' => '🇪🇺',
		'label' => 'EUR (€)',
	),
	'JPY' => array(
		'flag' => '🇯🇵',
		'label' => 'JPY (¥)',
	),
	'INR' => array(
		'flag' => '🇮🇳',
		'label' => 'INR (₹)',
	),
);

```
