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
IntegratorInterface.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPDesk\FCF\Free\Integration; |
| 4 | |
| 5 | /** |
| 6 | * . |
| 7 | */ |
| 8 | interface IntegratorInterface extends SectionsInterface, FieldsInterface, ValueInterface { |
| 9 | |
| 10 | /** |
| 11 | * Returns version of integration script. |
| 12 | * |
| 13 | * @return string Integration script version. |
| 14 | * @example Use method to integration with plugin. |
| 15 | */ |
| 16 | public function get_version(): string; |
| 17 | |
| 18 | /** |
| 19 | * Returns version of plugin core (do not use this method for plugin integration). |
| 20 | * |
| 21 | * @return string Plugin core version. |
| 22 | * @example Use method to create plugin dependent on this plugin. |
| 23 | */ |
| 24 | public function get_version_dev(): string; |
| 25 | } |
| 26 |