You appear to be a bot. Output may be restricted
Description
Display a current x2t mapping
Usage
_oik_x2t_x2t_row( $x2t, $data );
Parameters
- $x2t
- ( mixed ) required –
- $data
- ( mixed ) required –
Returns
voidSource
File name: oik-types/admin/oik-x2t.phpLines:
1 to 19 of 19
function _oik_x2t_x2t_row( $x2t, $data ) { bw_trace2(); $row = array(); // $row[] = $x2t; $args = $data['args']; //$Taxonomies = bw_array_get( $data, 'Taxonomies', null ); $row[] = esc_html( stripslashes( $args['type'] ) ) . " "; $row[] = esc_html( stripslashes( $args['taxonomy'] ) ) . " "; //$row[] = icheckbox( "hierarchical[$x2t]", $args['hierarchical'], true ); //$row[] = icheckbox( "expand[$x2t]", $expand, true ); $links = null; //$links = retlink( null, admin_url("admin.php?page=oik_x2t&preview_x2t=$x2t"), "Preview" ); //$links .= " "; $links .= retlink( null, admin_url("admin.php?page=oik_x2t&delete_x2t=$x2t"), "Delete" ); $links .= " "; // $links .= retlink( null, admin_url("admin.php?page=oik_x2t&edit_x2t=$x2t"), "Edit" ); $row[] = $links; bw_tablerow( $row ); }View on GitHub