1 ) { ?>
' . esc_html( $report['title'] ) . ''; } else { echo '

' . esc_html( $report['title'] ) . '

'; } if ( $report['description'] ) { // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Trusted HTML from PHP report registrations via propertyhive_admin_reports (core descriptions are empty). Extension callbacks own escaping of dynamic values in their descriptions. echo '

' . $report['description'] . '

'; } if ( $report['callback'] && ( is_callable( $report['callback'] ) ) ) { call_user_func( $report['callback'], $current_report ); } } ?>