You are here

function blogapi_blogapi in Drupal 4

Same name and namespace in other branches
  1. 5 modules/blogapi/blogapi.module \blogapi_blogapi()
1 string reference to 'blogapi_blogapi'
blogapi_menu in modules/blogapi.module

File

modules/blogapi.module, line 591
Enable users to post using applications that support XML-RPC blog APIs.

Code

function blogapi_blogapi() {
  switch (arg(1)) {
    case 'rsd':
      blogapi_rsd();
      break;
    default:
      drupal_not_found();
      break;
  }
}