function drupal_add_link

Add a <link> tag to the page's HEAD.

3 calls to drupal_add_link()
blogapi_init in drupal-6.x/modules/blogapi/blogapi.module
drupal_add_feed in drupal-6.x/includes/common.inc
Add a feed URL for the current page.
template_preprocess_book_navigation in drupal-6.x/modules/book/book.module
Process variables for book-navigation.tpl.php.

Archivo

drupal-6.x/includes/common.inc, line 1786
Common functions that many Drupal modules will need to reference.

Código

function drupal_add_link($attributes) {
  drupal_set_html_head('<link' . drupal_attributes($attributes) . ' />');
}