Field.php
3 weeks ago
FieldInterface.php
3 weeks ago
Fields.php
3 weeks ago
FieldsInterface.php
3 weeks ago
Integrator.php
3 weeks ago
IntegratorIntegration.php
3 weeks ago
IntegratorInterface.php
3 weeks ago
Section.php
3 weeks ago
SectionInterface.php
3 weeks ago
Sections.php
3 weeks ago
SectionsInterface.php
3 weeks ago
Value.php
3 weeks ago
ValueInterface.php
3 weeks ago
ValueInterface.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPDesk\FCF\Free\Integration; |
| 4 | |
| 5 | /** |
| 6 | * . |
| 7 | */ |
| 8 | interface ValueInterface { |
| 9 | |
| 10 | /** |
| 11 | * Returns value of order field. |
| 12 | * |
| 13 | * @param string $field_key Field key. |
| 14 | * @param int $order_id ID of WC_Order. |
| 15 | * |
| 16 | * @return mixed Value of field, or null if not exists. |
| 17 | */ |
| 18 | public function get_field_value( string $field_key, int $order_id ); |
| 19 | } |
| 20 |