Field.php
3 years ago
FieldInterface.php
3 years ago
Fields.php
3 years ago
FieldsInterface.php
3 years ago
Integrator.php
3 years ago
IntegratorIntegration.php
3 years ago
IntegratorInterface.php
3 years ago
Section.php
3 years ago
SectionInterface.php
3 years ago
Sections.php
3 years ago
SectionsInterface.php
3 years ago
Value.php
3 years ago
ValueInterface.php
3 years ago
FieldsInterface.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPDesk\FCF\Free\Integration; |
| 4 | |
| 5 | /** |
| 6 | * . |
| 7 | */ |
| 8 | interface FieldsInterface { |
| 9 | |
| 10 | /** |
| 11 | * Returns list of available fields. |
| 12 | * |
| 13 | * @param string $group_key Optionally key of field group. |
| 14 | * |
| 15 | * @return FieldInterface[] List of objects with field data. |
| 16 | */ |
| 17 | public function get_available_fields( string $group_key = '' ): array; |
| 18 | } |
| 19 |