wp-user-avatar
/
src
/
Admin
/
SettingsPages
/
DragDropBuilder
/
Fields
/
UserProfile
Last commit date
Bio.php
5 years ago
CustomField.php
5 years ago
DisplayName.php
5 years ago
Email.php
5 years ago
FirstName.php
5 years ago
LastName.php
5 years ago
Nickname.php
5 years ago
Username.php
5 years ago
Website.php
5 years ago
Email.php
36 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ProfilePress\Core\Admin\SettingsPages\DragDropBuilder\Fields\UserProfile; |
| 4 | |
| 5 | |
| 6 | use ProfilePress\Core\Admin\SettingsPages\DragDropBuilder\FieldBase; |
| 7 | |
| 8 | class Email extends FieldBase |
| 9 | { |
| 10 | public function field_type() |
| 11 | { |
| 12 | return 'profile-email'; |
| 13 | } |
| 14 | |
| 15 | public static function field_icon() |
| 16 | { |
| 17 | return '<span class="dashicons dashicons-email"></span>'; |
| 18 | } |
| 19 | |
| 20 | public function field_title() |
| 21 | { |
| 22 | return esc_html__('Email Address', 'wp-user-avatar'); |
| 23 | } |
| 24 | |
| 25 | public function field_settings() |
| 26 | { |
| 27 | return [ |
| 28 | parent::GENERAL_TAB => [ |
| 29 | 'label' => [ |
| 30 | 'label' => esc_html__('Title', 'wp-user-avatar'), |
| 31 | 'field' => self::INPUT_FIELD |
| 32 | ] |
| 33 | ] |
| 34 | ]; |
| 35 | } |
| 36 | } |