Field.php
4 weeks ago
FieldInterface.php
4 weeks ago
Fields.php
4 weeks ago
FieldsInterface.php
4 weeks ago
Integrator.php
4 weeks ago
IntegratorIntegration.php
4 weeks ago
IntegratorInterface.php
4 weeks ago
Section.php
4 weeks ago
SectionInterface.php
4 weeks ago
Sections.php
4 weeks ago
SectionsInterface.php
4 weeks ago
Value.php
4 weeks ago
ValueInterface.php
4 weeks ago
SectionInterface.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPDesk\FCF\Free\Integration; |
| 4 | |
| 5 | /** |
| 6 | * . |
| 7 | */ |
| 8 | interface SectionInterface { |
| 9 | |
| 10 | /** |
| 11 | * Returns key of field section. |
| 12 | * |
| 13 | * @return string Section key. |
| 14 | */ |
| 15 | public function get_section_key(): string; |
| 16 | |
| 17 | /** |
| 18 | * Returns label of field section. |
| 19 | * |
| 20 | * @return string Section label. |
| 21 | */ |
| 22 | public function get_section_label(): string; |
| 23 | } |
| 24 |