# give/4.16.8.1/src/FeatureFlags/OptionBasedFormEditor/Settings/General.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 31 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/FeatureFlags/OptionBasedFormEditor/Settings/General.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/FeatureFlags/OptionBasedFormEditor/Settings/General.php
- Modified: 2026-01-28T15:00:28+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/give/4.16.8.1/code/src/FeatureFlags/OptionBasedFormEditor/Settings/General.php#L10-L20`.

```php
<?php

namespace Give\FeatureFlags\OptionBasedFormEditor\Settings;

/**
 * @since 3.18.0
 */
class General extends AbstractOptionBasedFormEditorSettings
{
    /**
     * @since 4.14.0 Remove auto_format_currency option from the list of disabled options
     * @since 3.18.0
     */
    public function getDisabledOptionIds(): array
    {
        return [
            // General Section
            'override_legacy_donation_management_pages',
            // Currency Section
            'currency_position',
            'thousands_separator',
            'decimal_separator',
            'number_decimals',
            'currency_preview',
            // Access-control
            'session_lifetime',
            'limit_display_donations',
        ];
    }
}

```
