drupal_add_link

5 common.inc drupal_add_link($attributes)
6 common.inc drupal_add_link($attributes)

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

Related topics

6 calls to drupal_add_link()

File

includes/common.inc, line 1901
Common functions that many Drupal modules will need to reference.

Code

function drupal_add_link($attributes) {
  drupal_set_html_head('<link' . drupal_attributes($attributes) . " />\n");
}
Login or register to post comments