elementor-adapter-interface.php
1 year ago
elementor-adapter.php
1 year ago
elementor-counter-adapter-interface.php
1 year ago
plugin-status-adapter-interface.php
2 years ago
plugin-status-adapter.php
1 year ago
wordpress-adapter-interface.php
1 year ago
wordpress-adapter.php
1 year ago
elementor-counter-adapter-interface.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Elementor\Core\Isolation; |
| 4 | |
| 5 | if ( ! defined( 'ABSPATH' ) ) { |
| 6 | exit; |
| 7 | } |
| 8 | |
| 9 | interface Elementor_Counter_Adapter_Interface { |
| 10 | public function get_count( $key ): ?int; |
| 11 | |
| 12 | public function set_count( $key, $count = 0 ): void; |
| 13 | |
| 14 | public function increment( $key ): void; |
| 15 | |
| 16 | public function is_key_allowed( $key ): bool; |
| 17 | } |
| 18 |