You appear to be a bot. Output may be restricted
Description
Display the table of Field to Type relationships
Usage
_oik_f2t_f2t_table();
Parameters
Returns
voidSource
File name: oik-types/admin/oik-f2t.phpLines:
1 to 9 of 9
function _oik_f2t_f2t_table() { $bw_f2ts = get_option( "bw_f2ts" ); if ( is_array( $bw_f2ts) && count( $bw_f2ts )) { foreach ( $bw_f2ts as $f2t => $data ) { //$f2t = bw_array_get( $bw_f2t, "f2t", null ); _oik_f2t_f2t_row( $f2t, $data ); } } }View on GitHub