update_helpful_links

7 update.php update_helpful_links()
8 update.php update_helpful_links()

2 calls to update_helpful_links()

File

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

Code

function update_helpful_links() {
  // NOTE: we can't use l() here because the URL would point to
  // 'update.php?q=admin'.
  $links[] = '<a href="' . base_path() . '">Front page</a>';
  if (user_access('access administration pages')) {
    $links[] = '<a href="' . base_path() . '?q=admin">Administration pages</a>';
  }
  return $links;
}
Login or register to post comments