ad_admin_context_bar argsWhat it does:
Returns a Yahoo-style hierarchical navbar, starting with links to workspace and admin home. Suitable for use in pages underneath /admin.Defined in: /web/philip/packages/acs-core/navigation-procs.tcl
Source code:
set choices [list "<a href=\"[ad_pvt_home]\">Your Workspace</a>" "<a href=\"/admin/\">Admin Home</a>"]
set index 0
foreach arg $args {
incr index
if { $index == [llength $args] } {
lappend choices $arg
} else {
lappend choices "<a href=\"[lindex $arg 0]\">[lindex $arg 1]</a>"
}
}
return [join $choices " : "]