description-property.php
1 year ago
display-name-property.php
1 year ago
first-name-property.php
1 year ago
last-name-property.php
1 year ago
nick-name-property.php
1 year ago
update-action.php
1 year ago
user-confirm-password-property.php
1 year ago
user-email-property.php
1 year ago
user-id-property.php
1 year ago
user-meta-property.php
1 year ago
user-modifier.php
1 year ago
user-nicename-property.php
1 year ago
user-password-property.php
1 year ago
user-role-property.php
1 year ago
user-url-property.php
1 year ago
description-property.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Actions_V2\Update_User\Properties; |
| 5 | |
| 6 | use Jet_Form_Builder\Actions\Methods\Base_Object_Property; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | class Description_Property extends Base_Object_Property { |
| 14 | |
| 15 | public function get_id(): string { |
| 16 | return 'description'; |
| 17 | } |
| 18 | |
| 19 | public function get_label(): string { |
| 20 | return __( 'Description', 'jet-form-builder' ); |
| 21 | } |
| 22 | |
| 23 | } |
| 24 |