condition-types
2 years ago
functions
2 years ago
models
2 years ago
operators
2 years ago
query-views
2 years ago
render-states
2 years ago
rest-api
2 years ago
condition-manager.php
2 years ago
condition-response-object.php
2 years ago
functions.php
2 years ago
operators.php
2 years ago
render-state.php
2 years ago
render-states-collection.php
2 years ago
condition-response-object.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Blocks\Conditional_Block; |
| 5 | |
| 6 | use Jet_Form_Builder\Blocks\Conditional_Block\Condition_Types\Base_Condition_Type; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | interface Condition_Response_Object { |
| 14 | |
| 15 | public function to_response( array $base, Base_Condition_Type $item ): array; |
| 16 | |
| 17 | } |
| 18 |