function spaces_space_links in Spaces 6
Same name and namespace in other branches
- 5.2 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 1687
Code
function spaces_space_links() {
$links = array();
if ($space = spaces_get_space()) {
$space
->links($links);
drupal_alter('space_links', $links);
}
return $links;
}