yellow_fetch

Definition

yellow_fetch($url)
yellow/yellow.module, line 478

Description

Fetch data from yahoo!

Code

function yellow_fetch($url) {
  $result = drupal_http_request($url);
  if ($result->code == 200) {
    return $result->data;
  }
  else {
    return t('Failed to get REST document');
  }
}