You are here

function theme_varbase_neutral_tree in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 7.3

Returns HTML for common Drupal menu tree, without extra styling.

Parameters

$variables: An associative array containing:

  • tree: the diplayed time formated .

File

modules/custom/varbase_support/theme/theme.inc, line 28

Code

function theme_varbase_neutral_tree($variables) {
  return '<ul class="menu">' . $variables['tree'] . '</ul>';
}