wp-user-avatar
/
src
/
Admin
/
SettingsPages
/
DragDropBuilder
/
Fields
/
UserProfile
/
CustomField.php
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
CustomField.php
51 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 CustomField extends FieldBase |
| 9 | { |
| 10 | public function field_type() |
| 11 | { |
| 12 | return 'profile-cpf'; |
| 13 | } |
| 14 | |
| 15 | public static function field_icon() |
| 16 | { |
| 17 | return '<span class="dashicons dashicons-admin-users"></span>'; |
| 18 | } |
| 19 | |
| 20 | public function field_title() |
| 21 | { |
| 22 | return esc_html__('Custom Field', 'wp-user-avatar'); |
| 23 | } |
| 24 | |
| 25 | public function field_settings() |
| 26 | { |
| 27 | return [ |
| 28 | parent::GENERAL_TAB => [ |
| 29 | 'custom_field' => [ |
| 30 | 'label' => esc_html__('Custom Field', 'wp-user-avatar'), |
| 31 | 'field' => self::SELECT_FIELD, |
| 32 | 'options' => ppress_custom_fields_key_value_pair(), |
| 33 | 'description' => sprintf( |
| 34 | esc_html__('Select a custom field. Only use the %1$sTitle%2$s and %1$sUser Meta / Field Key%2$s below if you don\'t have it %3$sdefined in ProfilePress%4$s.', 'wp-user-avatar'), |
| 35 | '<em>', '</em>', |
| 36 | '<a target="_blank" href="' . PPRESS_CUSTOM_FIELDS_SETTINGS_PAGE . '">', '</a>' |
| 37 | ) |
| 38 | ], |
| 39 | 'label' => [ |
| 40 | 'label' => esc_html__('Title', 'wp-user-avatar'), |
| 41 | 'field' => self::INPUT_FIELD |
| 42 | ], |
| 43 | 'field_key' => [ |
| 44 | 'label' => esc_html__('User Meta / Field Key', 'wp-user-avatar'), |
| 45 | 'field' => self::INPUT_FIELD, |
| 46 | 'description' => esc_html__('Enter a custom field or user meta key here.', 'wp-user-avatar') |
| 47 | ] |
| 48 | ] |
| 49 | ]; |
| 50 | } |
| 51 | } |