BuildScratch.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ProfilePress\Core\Themes\DragDrop\PasswordReset; |
| 4 | |
| 5 | use ProfilePress\Core\Admin\SettingsPages\DragDropBuilder\DragDropBuilder; |
| 6 | use ProfilePress\Core\Themes\DragDrop\AbstractBuildScratch; |
| 7 | use ProfilePress\Core\Admin\SettingsPages\DragDropBuilder\Fields; |
| 8 | |
| 9 | class BuildScratch extends AbstractBuildScratch |
| 10 | { |
| 11 | public static function default_field_listing() |
| 12 | { |
| 13 | Fields\Init::init(); |
| 14 | $standard_fields = DragDropBuilder::get_instance()->standard_fields(); |
| 15 | |
| 16 | return [ |
| 17 | $standard_fields['user-login'] |
| 18 | ]; |
| 19 | } |
| 20 | } |