Integrations

Customising the top level navigation

To add additional top navigation links: in the config.php file, or in "Config Override" if setting this on a per-group basis, enter:

You can add as many links as you like. They must be numbered sequentially starting from zero (0,1,2,3 etc.)

$custom_top_nav[0]["title"]="Example Link A";
$custom_top_nav[0]["link"]="search.php?search=a";
$custom_top_nav[1]["modal"]=false;

$custom_top_nav[1]["title"]="Example Link B";
$custom_top_nav[1]["link"]="search.php?search=b";
$custom_top_nav[1]["modal"]=true;
  • "title" is the visible clickable text and supports the multilingual format used for field names and values.
  • "link" is a link to the page in question. Any URL can be used (internally to ResourceSpace or externally to another site)
  • "modal" will determine whether to load the page in a modal window above the application.