Yoast_Plugin_Conflict::search_active_plugins()protectedYoast 1.0

Loop through the $this->plugins to check if one of the plugins is active.

This method will store the active plugins in $this->active_plugins.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->search_active_plugins();

Код Yoast_Plugin_Conflict::search_active_plugins() Yoast 22.4

protected function search_active_plugins() {
	foreach ( $this->plugins as $plugin_section => $plugins ) {
		$this->check_plugins_active( $plugins, $plugin_section );
	}
}