function theme_taxonomy_menu_group_term_set_add in Taxonomy menu 6.3
Theme function for term set associate from on menu group form
1 theme call to theme_taxonomy_menu_group_term_set_add()
- taxonomy_menu_group_form in ./
taxonomy_menu.admin.inc - Implementation of hook_form().
File
- ./
taxonomy_menu.module, line 456 - It Generates menu links for all selected taxonomy terms
Code
function theme_taxonomy_menu_group_term_set_add($form) {
$output = '';
if ($form['term_set']['#options']) {
$output .= '<div class="container-inline">';
$output .= drupal_render($form['term_set']);
$output .= drupal_render($form['term_set_parent']);
$output .= drupal_render($form['term_set_more']);
$output .= '</div>';
}
else {
$output = t('There are no term sets to associate with this menu group.');
}
return $output;
}