You are here

function theme_noderelationships_noderef_singleselect in Node Relationships 6

Render the single selection panel for search and reference views.

1 theme call to theme_noderelationships_noderef_singleselect()
noderelationships_noderef_page_search in ./noderelationships.pages.inc
Build the search and reference page.

File

./noderelationships.pages.inc, line 492
Implementation of user land pages.

Code

function theme_noderelationships_noderef_singleselect($referrer_field) {
  $output = '<div class="noderelationships-noderef-singleselect">';
  $output .= '<label>' . t('Currently selected %field', array(
    '%field' => $referrer_field['widget']['label'],
  )) . ':</label>';
  $output .= ' <span></span>';
  $output .= '</div>';
  return $output;
}