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_fields();
Parameters
Returns
void
Source
File name: oik-clone/admin/class-oik-clone-servers-list-table.php
Lines:
1 to 17 of 17
function display_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 ) { bw_form_field( $field, $data['#field_type'], $data['#title'], $value, $data['#args'] ); } else { e( ihidden( $field, $value ) ); } } } }