You appear to be a bot. Output may be restricted
Description
Display a current f2t mapping
Usage
_oik_f2t_f2t_row( $f2t, $data );
Parameters
- $f2t
- ( mixed ) required –
- $data
- ( mixed ) required –
Returns
voidSource
File name: oik-types/admin/oik-f2t.phpLines:
1 to 17 of 17
function _oik_f2t_f2t_row( $f2t, $data ) { bw_trace2(); $row = array(); // $row[] = $f2t; $args = $data['args']; //$fields = bw_array_get( $data, 'fields', null ); $row[] = esc_html( stripslashes( $args['type'] ) ) . " "; $row[] = esc_html( stripslashes( $args['field'] ) ) . " "; $links = null; // $links .= retlink( null, admin_url("admin.php?page=oik_f2t&preview_f2t=$f2t"), "Preview" ); // $links .= " "; $links .= retlink( null, admin_url("admin.php?page=oik_f2t&delete_f2t=$f2t"), "Delete" ); $links .= " "; //$links .= retlink( null, admin_url("admin.php?page=oik_f2t&edit_f2t=$f2t"), "Edit" ); $row[] = $links; bw_tablerow( $row ); }View on GitHub