You are here

function GoogleMiniResult::buildMetaData in Google Search Appliance 5

Same name and namespace in other branches
  1. 6.2 GoogleMini.php \GoogleMiniResult::buildMetaData()
1 call to GoogleMiniResult::buildMetaData()
GoogleMiniResult::getMetaData in ./GoogleMini.php

File

./GoogleMini.php, line 392

Class

GoogleMiniResult

Code

function buildMetaData() {
  foreach ($this->result->MT as $metaTag) {
    $name = $metaTag['N'];
    $value = $metaTag['V'];
    $this->metaData[(string) $name] = (string) $value;
  }
}