PluginProbe
Elementor Website Builder – more than just a page builder / 3.6.2
Elementor Website Builder – more than just a page builder v3.6.2
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/wp-api.php +21 -0 3.6.13.6.2 View file →
@@ -35,5 +35,26 @@
35 35 public function get_active_plugins() {
36 36 return $this->get_plugins()
37 37 ->only( get_option( 'active_plugins' ) );
38 38 }
39 +
40 + /**
41 + * @return object|array
42 + */
43 + public function plugins_api( $action, $args ) {
44 + return plugins_api( $action, $args );
45 + }
46 +
47 + /**
48 + * @return bool
49 + */
50 + public function is_plugin_active( $plugin ) {
51 + return is_plugin_active( $plugin );
52 + }
53 +
54 + /**
55 + * @return bool|int|null|true
56 + */
57 + public function activate_plugin( $plugin ) {
58 + return activate_plugin( $plugin );
59 + }
39 60 }