LegacySettingsPageAdapter.php
1 month ago
SettingsSection.php
2 weeks ago
SettingsSectionInterface.php
2 weeks ago
SettingsSectionRegistry.php
2 weeks ago
SettingsUIPageInterface.php
1 month ago
SettingsUISchema.php
1 month ago
SettingsUISchema.php
18 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Public settings UI schema helpers. |
| 4 | */ |
| 5 | |
| 6 | declare( strict_types=1 ); |
| 7 | |
| 8 | namespace Automattic\WooCommerce\Admin\Settings; |
| 9 | |
| 10 | defined( 'ABSPATH' ) || exit; |
| 11 | |
| 12 | /** |
| 13 | * Converts WooCommerce settings definitions into the settings UI schema. |
| 14 | * |
| 15 | * @since 10.9.0 |
| 16 | */ |
| 17 | class SettingsUISchema extends \Automattic\WooCommerce\Internal\Admin\Settings\SettingsUISchema {} |
| 18 |