Skip to content
Snippets Groups Projects
Commit 82610a4d authored by Jaime Perez's avatar Jaime Perez
Browse files

aggregator2: add a hook to display a link to the aggregator2 page from the Federation tab.

parent 790b6b33
No related branches found
No related tags found
No related merge requests found
<?php
/**
* Hook to add the aggregator2 lik to the frontpage.
*
* @param array &$links The links on the frontpage, split into sections.
*/
function aggregator2_hook_frontpage(&$links) {
assert('is_array($links)');
assert('array_key_exists("links", $links)');
$links['federation'][] = array(
'href' => SimpleSAML_Module::getModuleURL('aggregator2/'),
'text' => '{aggregator2:aggregator:frontpage_link}',
);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment