You appear to be a bot. Output may be restricted
Description
Form a 'noderef' field typebw_form_field_noderef – formatting for a field as a select list of a list of nodes of a particular type The options come from $args[#type]
Usage
bw_form_field_noderef( $name, $type, $title, $value, $args );
Parameters
- $name
- ( mixed ) required –
- $type
- ( mixed ) required –
- $title
- ( mixed ) required –
- $value
- ( mixed ) required –
- $args
- ( mixed ) required –
Returns
voidSource
File name: oik/includes/bw_metadata.phpLines:
1 to 7 of 7
function bw_form_field_noderef( $name, $type, $title, $value, $args ) { oik_require( "includes/bw_noderef2.php" ); $options = bw_load_noderef2( $args ); $args['#options'] = $options; $value = bw_get_noderef_id( $value ); BW_::bw_select( $name, $title, $value, $args ); }View on GitHub View on Trac