PluginProbe
Paid Membership Plugin, Ecommerce, User Registration Form, Login Form, User Profile & Restrict Content – ProfilePress / 4.17.3
Paid Membership Plugin, Ecommerce, User Registration Form, Login Form, User Profile & Restrict Content – ProfilePress v4.17.3
4.17.3 4.17.2 4.17.1 4.17.0 4.16.19 4.16.18 4.16.17 4.16.16 trunk 1.0 1.0.1 1.0.2 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5a 1.1.6 1.1.7 1.2 1.2.1 1.2.2 1.2.3 All 220 releases
wp-user-avatar / src / Themes / DragDrop / PasswordReset / BuildScratch.php
BuildScratch.php
20 lines 563 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }