11 lines
283 B
PHP
11 lines
283 B
PHP
<?php
|
|
namespace Elementor\Core\Isolation;
|
|
|
|
interface Plugin_Status_Adapter_Interface {
|
|
|
|
public function is_plugin_installed( $plugin_path ): bool;
|
|
|
|
public function get_install_plugin_url( $plugin_path ): string;
|
|
|
|
public function get_activate_plugin_url( $plugin_path ): string;
|
|
}
|