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