Description
Parse the content array into the table
Usage
OIK_table::parse_content_array( $content_array );Parameters
- $content_array
- ( array ) required – array of CSV records
Returns
voidSource
File name: oik-bob-bing-wide/classes/class-oik-tables.phpLines:
1 to 10 of 10
function parse_content_array( $content_array ) { foreach ( $content_array as $line ) { $line = trim( $line ); $row = str_getcsv( $line ); bw_trace2( $row, "row from $line!", false); if ( $row ) { $this->table[] = $row; } } }View on GitHub
Called by
1 to 2 of 2
Invoked by
Call hooks
API Letters:
