Description
Edit the taxonomy to type relationship
Usage
oik_x2t_edit_x2t();Parameters
Returns
voidSource
File name: oik-types/admin/oik-x2t.phpLines:
1 to 16 of 16
function oik_x2t_edit_x2t( ) { global $bw_x2t; bw_form(); stag( "table", "wide-fat" ); bw_tablerow( array( "Relationship", $bw_x2t['args']['x2t'] . ihidden( 'x2t', $bw_x2t['args']['x2t']) ) ); //bw_textfield( "x2t", 20, "Post x2t", $bw_x2t['args']['x2t'] ); //bw_textfield( "type", 30, "Type", stripslashes( $bw_x2t['args']['type'] ) ); //$field = esc_textarea( $bw_x2t['args']['field'] ); //bw_trace2( $field, "esc_textarea field", false ); bw_textfield( "taxonomy", 100, "taxonomy", stripslashes( $bw_x2t['args']['taxonomy'] ) ); //bw_checkbox( "hierarchical", "Hierarchical x2t?", $bw_x2t['args']["hierarchical"] ); etag( "table" ); p( isubmit( "_oik_x2t_edit_x2t", "Change relationship", null, "button-primary" ) ); etag( "form" ); }View on GitHub
Called by
Invoked by
Calls
1 to 8 of 8
- bw_form() – Start a form
- bw_tablerow() – Display a table row or table head row when $tdtag = "th"
- bw_textfield() – Form a text field
- etag() – Output an end tag
- ihidden() – Return a hidden input field for a form
- isubmit() – Create a submit button
- p() – Output a paragraph of translatable text
- stag() – Output an HTML opening tag
