Yoast\WP\SEO\Services\Importing

Conflicting_Plugins_Service::detect_conflicting_plugins()publicYoast 1.0

Detects the conflicting plugins.

Метод класса: Conflicting_Plugins_Service{}

Хуков нет.

Возвращает

Массив. A list of all active conflicting plugins.

Использование

$Conflicting_Plugins_Service = new Conflicting_Plugins_Service();
$Conflicting_Plugins_Service->detect_conflicting_plugins();

Код Conflicting_Plugins_Service::detect_conflicting_plugins() Yoast 22.3

public function detect_conflicting_plugins() {
	$all_active_plugins = $this->get_active_plugins();

	// Search for active plugins.
	return $this->get_active_conflicting_plugins( $all_active_plugins );
}