You appear to be a bot. Output may be restricted
Description
Display the fields for the selected item
If $this->items is not set then we need to load the data ourselves
Usage
OIK_Clone_Servers_List_Table::display_view_fields();
Parameters
Returns
void
Source
File name: oik-clone/admin/class-oik-clone-servers-list-table.php
Lines:
1 to 24 of 24
function display_view_fields() { $key = $this->key(); if ( $key !== null ) { $option = bw_get_option( $this->option_field(), $this->option_name() ); $fields = bw_array_get( $option, $key, null ); //$fields = $this->items[ $key ]; //bw_trace2( $fields, "fields" ); foreach ( $fields as $field => $value ) { $data = bw_get_field_data( $field ); if ( $data ) { stag( "tr" ); stag( "td" ); e( $data['#title'] ); etag( "td" ); stag( "td" ); bw_theme_field( $field, $value, $data ); etag( "td" ); etag( "tr" ); } else { e( ihidden( $field, $value ) ); } } } }