← All changes
|
core/isolation/wordpress-adapter-interface.php
+0
-21
4.1.0-dev2
→
3.24.4
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,30 +12,10 @@ | ||
| 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 | |
| 23 | 20 | public function update_option( $option_key, $option_value ); |
| 24 | - | |
| 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 | - public function current_user_can( $capability, $args ); | |
| 36 | - | |
| 37 | - 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 | 21 | } |