You are here

function blogapi_init in Blog API 7.2

Same name and namespace in other branches
  1. 7 blogapi.module \blogapi_init()

Implements hook_init().

File

./blogapi.module, line 50
Enable users to post using applications that support BlogAPIs.

Code

function blogapi_init() {
  if (drupal_is_front_page()) {
    drupal_add_html_head_link(array(
      'rel' => 'EditURI',
      'type' => 'application/rsd+xml',
      'title' => t('RSD'),
      'href' => url('blogapi/rsd', array(
        'absolute' => TRUE,
      )),
    ), TRUE);
  }
}