' . $variables['tree'] . ''; } /** * Bootstrap theme wrapper function for the primary menu links. * * @param array $variables * An associative array containing: * - tree: An HTML string containing the tree's items. * * @return string * The constructed HTML. */ function bootstrap_menu_tree__primary(array &$variables) { return ''; } /** * Bootstrap theme wrapper function for the secondary menu links. * * @param array $variables * An associative array containing: * - tree: An HTML string containing the tree's items. * * @return string * The constructed HTML. */ function bootstrap_menu_tree__secondary(array &$variables) { return ''; } /** * Overrides theme_menu_tree() for book module. * * @param array $variables * An associative array containing: * - tree: An HTML string containing the tree's items. * * @return string * The constructed HTML. */ function bootstrap_menu_tree__book_toc(array &$variables) { $output = '
'; $output .= ' '; $output .= ''; $output .= '
'; return $output; } /** * Overrides theme_menu_tree() for book module. * * @param array $variables * An associative array containing: * - tree: An HTML string containing the tree's items. * * @return string * The constructed HTML. */ function bootstrap_menu_tree__book_toc__sub_menu(array &$variables) { return ''; }