jetformbuilder
/
includes
/
integrations
/
active-campaign
/
methods
/
first-name-contact-property.php
contact-modifier.php
3 years ago
custom-contact-property.php
3 years ago
email-contact-property.php
3 years ago
first-name-contact-property.php
3 years ago
last-name-contact-property.php
3 years ago
list-contact-property.php
3 years ago
phone-contact-property.php
3 years ago
sync-contact-action.php
3 years ago
tags-contact-property.php
3 years ago
first-name-contact-property.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Integrations\Active_Campaign\Methods; |
| 5 | |
| 6 | |
| 7 | use Jet_Form_Builder\Actions\Methods\Base_Object_Property; |
| 8 | |
| 9 | class First_Name_Contact_Property extends Base_Object_Property { |
| 10 | |
| 11 | // It can be empty |
| 12 | // in action we use dynamic fetching properties |
| 13 | public function get_label(): string { |
| 14 | return ''; |
| 15 | } |
| 16 | |
| 17 | public function get_id(): string { |
| 18 | return 'firstName'; |
| 19 | } |
| 20 | } |