Field.php
2 weeks ago
FieldInterface.php
2 weeks ago
Fields.php
2 weeks ago
FieldsInterface.php
2 weeks ago
Integrator.php
2 weeks ago
IntegratorIntegration.php
2 weeks ago
IntegratorInterface.php
2 weeks ago
Section.php
2 weeks ago
SectionInterface.php
2 weeks ago
Sections.php
2 weeks ago
SectionsInterface.php
2 weeks ago
Value.php
2 weeks ago
ValueInterface.php
2 weeks ago
FieldInterface.php
45 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPDesk\FCF\Free\Integration; |
| 4 | |
| 5 | /** |
| 6 | * . |
| 7 | */ |
| 8 | interface FieldInterface { |
| 9 | |
| 10 | /** |
| 11 | * Returns key of field. |
| 12 | * |
| 13 | * @return string Field key. |
| 14 | */ |
| 15 | public function get_field_key(): string; |
| 16 | |
| 17 | /** |
| 18 | * Returns label of field. |
| 19 | * |
| 20 | * @return string Field label. |
| 21 | */ |
| 22 | public function get_field_label(): string; |
| 23 | |
| 24 | /** |
| 25 | * Returns type of field. |
| 26 | * |
| 27 | * @return string Field type. |
| 28 | */ |
| 29 | public function get_field_type(): string; |
| 30 | |
| 31 | /** |
| 32 | * Returns status if field is custom. |
| 33 | * |
| 34 | * @return bool If field is custom? |
| 35 | */ |
| 36 | public function is_custom_field(): bool; |
| 37 | |
| 38 | /** |
| 39 | * Returns key of field group. |
| 40 | * |
| 41 | * @return string Group key. |
| 42 | */ |
| 43 | public function get_group_key(): string; |
| 44 | } |
| 45 |