function update_helpful_links

Provides links to the homepage and administration pages.

2 calls to update_helpful_links()
update_results_page in drupal/core/update.php
Displays results of the update script with any accompanying errors.
update_script_selection_form in drupal/core/update.php
Form constructor for the list of available database module updates.

File

drupal/core/update.php, line 170
Administrative page for handling updates from one Drupal version to another.

Code

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;
}