| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\FeatureFlags\OptionBasedFormEditor\Settings; |
| 4 |
|
| 5 |
/** |
| 6 |
* @since 3.18.0 |
| 7 |
*/ |
| 8 |
class General extends AbstractOptionBasedFormEditorSettings |
| 9 |
{ |
| 10 |
/** |
| 11 |
* @since 4.14.0 Remove auto_format_currency option from the list of disabled options |
| 12 |
* @since 3.18.0 |
| 13 |
*/ |
| 14 |
public function getDisabledOptionIds(): array |
| 15 |
{ |
| 16 |
return [ |
| 17 |
// General Section |
| 18 |
'override_legacy_donation_management_pages', |
| 19 |
// Currency Section |
| 20 |
'currency_position', |
| 21 |
'thousands_separator', |
| 22 |
'decimal_separator', |
| 23 |
'number_decimals', |
| 24 |
'currency_preview', |
| 25 |
// Access-control |
| 26 |
'session_lifetime', |
| 27 |
'limit_display_donations', |
| 28 |
]; |
| 29 |
} |
| 30 |
} |
| 31 |
|