You are here

function theme_crumbs_weights_textual in Crumbs, the Breadcrumbs suite 7.2

Theme callback for form elements with "#type" = "crumbs_weights_textual".

Parameters

$vars:

Return value

bool|string Rendered HTML

1 theme call to theme_crumbs_weights_textual()
crumbs_element_info in ./crumbs.form.inc
Implements hook_element_info()

File

admin/crumbs.textual.inc, line 10

Code

function theme_crumbs_weights_textual(&$vars) {
  $element = $vars['element'];
  return drupal_render($element['text']);
}