Provides links to the homepage and administration pages.
function update_helpful_links() {
$links['front'] = array(
'title' => t('Front page'),
'href' => '<front>',
);
if (user_access('access administration pages')) {
$links['admin-pages'] = array(
'title' => t('Administration pages'),
'href' => 'admin',
);
}
return $links;
}