# elementor/3.24.0-dev3/core/isolation/wordpress-adapter-interface.php

Elementor Website Builder – more than just a page builder, version 3.24.0-dev3. 22 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.24.0-dev3/code/core/isolation/wordpress-adapter-interface.php
- Raw: https://pluginprobe.com/plugins/elementor/3.24.0-dev3/raw/core/isolation/wordpress-adapter-interface.php
- Modified: 2024-08-25T13:59:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.24.0-dev3/code/core/isolation/wordpress-adapter-interface.php#L10-L20`.

```php
<?php
namespace Elementor\Core\Isolation;

interface Wordpress_Adapter_Interface {

	public function get_plugins();

	public function is_plugin_active( $plugin_path );

	public function wp_nonce_url( $url, $action );

	public function self_admin_url( $path );

	public function get_pages( $args );

	public function get_option( $option_key );

	public function add_option( $option_key, $option_value );

	public function update_option( $option_key, $option_value );
}

```
