LegacySettingsPageAdapter.php
4 weeks ago
SettingsSection.php
2 weeks ago
SettingsSectionInterface.php
2 weeks ago
SettingsSectionRegistry.php
2 weeks ago
SettingsUIPageInterface.php
4 weeks ago
SettingsUISchema.php
4 weeks ago
LegacySettingsPageAdapter.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Public legacy WC_Settings_Page adapter for settings UI. |
| 4 | */ |
| 5 | |
| 6 | declare( strict_types=1 ); |
| 7 | |
| 8 | namespace Automattic\WooCommerce\Admin\Settings; |
| 9 | |
| 10 | defined( 'ABSPATH' ) || exit; |
| 11 | |
| 12 | /** |
| 13 | * Adapts a WC_Settings_Page instance into the settings UI page contract. |
| 14 | * |
| 15 | * Extensions can use this class directly for native-field migrations, or |
| 16 | * subclass it to add component metadata, script handles, or custom save behavior. |
| 17 | * |
| 18 | * @since 10.9.0 |
| 19 | */ |
| 20 | class LegacySettingsPageAdapter extends \Automattic\WooCommerce\Internal\Admin\Settings\LegacySettingsPageAdapter {} |
| 21 |