| 1 |
<?php |
| 2 |
|
| 3 |
namespace Elementor\Modules\Usage\Contracts; |
| 4 |
|
| 5 |
if ( ! defined( 'ABSPATH' ) ) { |
| 6 |
exit; // Exit if accessed directly. |
| 7 |
} |
| 8 |
|
| 9 |
interface Element_Usage_Calculator { |
| 10 |
public function can_calculate( array $element, $element_instance ): bool; |
| 11 |
|
| 12 |
public function calculate( array $element, $element_instance, array $existing_usage ): array; |
| 13 |
} |
| 14 |
|