Field.php
1 week ago
FieldInterface.php
1 week ago
Fields.php
1 week ago
FieldsInterface.php
1 week ago
Integrator.php
1 week ago
IntegratorIntegration.php
1 week ago
IntegratorInterface.php
1 week ago
Section.php
1 week ago
SectionInterface.php
1 week ago
Sections.php
1 week ago
SectionsInterface.php
1 week ago
Value.php
1 week ago
ValueInterface.php
1 week 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 |