Config
5 years ago
Helpers
5 years ago
Routes
4 years ago
Setup
5 years ago
Wizard
4 years ago
DefaultFormFactory.php
5 years ago
FormRepository.php
5 years ago
LocaleCollection.php
5 years ago
SettingsRepository.php
5 years ago
SettingsRepositoryFactory.php
5 years ago
SettingsRepositoryFactory.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Onboarding; |
| 4 | |
| 5 | /** |
| 6 | * @since 2.8.0 |
| 7 | */ |
| 8 | class SettingsRepositoryFactory { |
| 9 | |
| 10 | /** |
| 11 | * @param string $optionName |
| 12 | * |
| 13 | * @since 2.8.0 |
| 14 | */ |
| 15 | public function make( $optionName ) { |
| 16 | |
| 17 | $option = get_option( $optionName, [] ); |
| 18 | |
| 19 | $persistCallback = function( $settings ) use ( $optionName ) { |
| 20 | return update_option( $optionName, $settings ); |
| 21 | }; |
| 22 | |
| 23 | return new SettingsRepository( $option, $persistCallback ); |
| 24 | } |
| 25 | } |
| 26 |