contact-modifier.php
2 years ago
custom-contact-property.php
2 years ago
email-contact-property.php
2 years ago
first-name-contact-property.php
2 years ago
last-name-contact-property.php
2 years ago
list-contact-property.php
2 years ago
phone-contact-property.php
2 years ago
sync-contact-action.php
2 years ago
tags-contact-property.php
2 years ago
phone-contact-property.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Active_Campaign\Methods; |
| 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 Phone_Contact_Property extends Base_Object_Property { |
| 14 | |
| 15 | // It can be empty |
| 16 | // in action we use dynamic fetching properties |
| 17 | public function get_label(): string { |
| 18 | return ''; |
| 19 | } |
| 20 | |
| 21 | public function get_id(): string { |
| 22 | return 'phone'; |
| 23 | } |
| 24 | } |
| 25 |