';
$html .= '
' . wp_kses_post( $plugin_data['notice_title'] ) . '
';
$html .= ( ! empty( $plugin_data['notice_desc'] ) ) ? '
' . wp_kses_post( $plugin_data['notice_desc'] ) . '
' : '';
if ( ! empty( $dependency_plugins ) || ! empty( $dependency_themes ) ) {
$html .= '
';
if ( ! empty( $dependency_plugins ) ) {
foreach ( $dependency_plugins as $plugin_slug => $plugin_name ) {
$html .= '- ' . esc_html( $plugin_name ) . '
';
}
}
if ( ! empty( $dependency_themes ) ) {
foreach ( $dependency_themes as $theme_slug => $theme_name ) {
$html .= '- ' . esc_html( $theme_name ) . '
';
}
}
$html .= '
';
}
if ( ! empty( $error_message ) ) {
$html .= '
' . esc_attr( $error_message ) . '
';
}
$html .= '
';
$html .= '