Automattic\WooCommerce\Admin
FeaturePlugin::render_dependencies_notice() public WC 1.0
Notify users of the plugin requirements.
{} Это метод класса: FeaturePlugin{}
Хуков нет.
Возвращает
null
. Null. Ничего.
Использование
$FeaturePlugin = new FeaturePlugin(); $FeaturePlugin->render_dependencies_notice();
Код FeaturePlugin::render_dependencies_notice() FeaturePlugin::render dependencies notice WC 5.1.0
public function render_dependencies_notice() {
$message = $this->get_dependency_errors();
printf( '<div class="error"><p>%s</p></div>', implode( ' ', $message ) ); /* phpcs:ignore xss ok. */
}