You appear to be a bot. Output may be restricted
Description
Display the form to edit a field to post relationship
Usage
oik_f2t_edit_f2t();
Parameters
Returns
voidSource
File name: oik-types/admin/oik-f2t.phpLines:
1 to 17 of 17
function oik_f2t_edit_f2t( ) { global $bw_f2t; bw_form(); stag( "table", "wide-fat" ); bw_tablerow( array( "Relationship", $bw_f2t['args']['f2t'] . ihidden( 'f2t', $bw_f2t['args']['f2t']) ) ); //bw_textfield( "f2t", 20, "Post f2t", $bw_f2t['args']['f2t'] ); bw_textfield( "type", 30, "Type", stripslashes( $bw_f2t['args']['type'] ) ); //$field = esc_textarea( $bw_f2t['args']['field'] ); //bw_trace2( $field, "esc_textarea field", false ); bw_textfield( "field", 100, "Field", stripslashes( $bw_f2t['args']['field'] ), 10 ); //bw_checkbox( "hierarchical", "Hierarchical f2t?", $bw_f2t['args']["hierarchical"] ); etag( "table" ); p( isubmit( "_oik_f2t_edit_f2t", "Change relationship", null, "button-primary" ) ); etag( "form" ); }View on GitHub