Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Automator_Send_Webhook::build_html_table( $array, $is_sample = false )
Basic two column table
Contents
Parameters Parameters
- $array
-
(Required)
Return Return
(string)
Source Source
File: src/core/lib/webhooks/class-automator-send-webhook.php
private function build_html_table( $array, $is_sample = false ) { $n = ''; $spaces = ''; if ( $is_sample ) { $n = "\n"; $spaces = "\t"; } // start table $html = '<table>' . $n; // data rows foreach ( $array as $key => $value ) { $html .= $spaces . '<tr>' . $n; $html .= $spaces . $spaces . '<td>' . htmlspecialchars( $key ) . '</td>' . $n; $html .= $spaces . $spaces . '<td>' . htmlspecialchars( $value ) . '</td>' . $n; $html .= $spaces . '</tr>' . $n; } // finish table and return it $html .= '</table>'; return $html; }
Expand full source code Collapse full source code View on Github