You appear to be a bot. Output may be restricted
Description
Return all the fields for the selected option name
Similar to bw_get_field_names()
Usage
$array = OIK_Clone_Servers_List_Table::get_fields();
Parameters
Returns
array $names – the array of registered fields for the option
Source
File name: oik-clone/admin/class-oik-clone-servers-list-table.php
Lines:
1 to 13 of 13
function get_fields() { $option_name = $this->option_name(); $fields = array(); global $bw_mapping; global $bw_fields; if ( isset( $bw_mapping['field'][ $option_name ] )) { foreach ( $bw_mapping['field'][ $option_name] as $field ) { $fields[ $field] = $bw_fields[ $field ]; } } $this->fields = $fields; return( $this->fields ); }