UserFactory.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AC\Preferences; |
| 6 | |
| 7 | use AC\Storage\UserMeta; |
| 8 | |
| 9 | class UserFactory |
| 10 | { |
| 11 | public const SCREEN_OPTIONS = 'admin_screen_options'; |
| 12 | public const TOUR = 'onboarding_tour'; |
| 13 | |
| 14 | public function create(string $key, ?int $user_id = null): Preference |
| 15 | { |
| 16 | return new Preference( |
| 17 | new UserMeta('ac_preferences_' . $key, $user_id) |
| 18 | ); |
| 19 | } |
| 20 | |
| 21 | } |
| 22 |