You are here

function spaces_space_links in Spaces 5.2

Same name and namespace in other branches
  1. 6 spaces.module \spaces_space_links()

Generates an array of utility links for the current space suitable for use in theme_links().

File

./spaces.module, line 1228

Code

function spaces_space_links() {
  $links = array();
  if ($space = spaces_get_space()) {
    $links = array();
    $space
      ->links($links);
  }
  return $links;
}