PluginProbe
Elementor Website Builder – more than just a page builder / 3.24.8
Elementor Website Builder – more than just a page builder v3.24.8
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | core/isolation/wordpress-adapter-interface.php +0 -17 4.2.43.24.8 View file →
@@ -1,6 +1,5 @@
1 1 <?php
2 -
3 2 namespace Elementor\Core\Isolation;
4 3
5 4 interface Wordpress_Adapter_Interface {
6 5
@@ -13,10 +12,8 @@
13 12 public function self_admin_url( $path );
14 13
15 14 public function get_pages( $args );
16 15
17 - public function get_query( $args );
18 -
19 16 public function get_option( $option_key );
20 17
21 18 public function add_option( $option_key, $option_value );
22 19
@@ -21,22 +18,8 @@
21 18 public function add_option( $option_key, $option_value );
22 19
23 20 public function update_option( $option_key, $option_value );
24 21
25 - public function get_user_preferences( $preference_key );
26 -
27 - public function set_user_preferences( $preference_key, $value );
28 -
29 - public function is_new_installation();
30 -
31 - public function add_query_arg( $args, $url );
32 -
33 - public function has_custom_logo();
34 -
35 22 public function current_user_can( $capability, $args );
36 23
37 24 public function get_post_status( $post_id );
38 -
39 - public function get_posts( $args );
40 -
41 - public function get_post_types( $args = [], $output = 'names', $operator = 'and' );
42 25 }