vote up 0 vote down star

I am looking for a module that can create sitemap in Drupal, as shown below:

But couldn't find any. I tried Site Map module, but it can only generate a sitemap page; it can't create a sitemap block at the end of every page. I also tried site menu module, but it can't create a sitemap block as shown above, as well.

Maybe it's just that I don't know how to configure, but I read every readme file, and tried for a few days, still can't get it to work.

Anyone has any idea?

flag

49% accept rate

4 Answers

vote up 1 vote down

I had the same problem, after trying a module (site-map) but missing customization options I wrote a custom module. Took less time then messing with the site-map module, for just getting a site map the following code is enough (adapt your-menu):

function sitemap_render_menu ($menu) {
    $output = "<ul>";
    foreach ($menu as $item) {
	$link = $item["link"];
	if ($link["hidden"]) {
	    continue;
	}

	$output .= "<li><a href=\"" . check_url(url($link["href"], $link["options"])) . "\">" . $link["title"] . "</a></li>";

	if ($item["below"]) {
	    $output .= sitemap_render_menu($item["below"]);
	}
    }

    $output .= "</ul>";
    return $output;
}

function sitemap_content () {
    $output = "<h1>Sitemap</h1>";
    $output .= "<span id=\"sitemap\">";
    $output .= sitemap_render_menu(menu_tree_all_data("your-menu"));
    $output .= "</span>";
    return $output;
}


function sitemap_menu () {
    $items = array();

    $items["sitemap"] = array (
	    "title" => "Sitemap",
	    "page callback" => "sitemap_content",
	    "access arguments" => array("access content"),
	    "type" => MENU_CALLBACK);

    return $items;
}
link|flag
vote up 0 vote down

My idea here is to use Views module with customized block type.

link|flag
vote up 0 vote down

There is a basic comparison of sitemap modules at http://groups.drupal.org/node/15980

I have used sitemenu and it worked for my needs, but the real answer depends on how you structure your site with taxonomy, content types, etc.

link|flag
vote up 0 vote down

Something like Auto Menu might work for you here as well. You could simply add the menu it generates to a footer block on your front page.

link|flag
Unfortunately Auto Menu is not available for Drupal 6 :( – Ngu Soon Hui Jun 4 at 16:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.