function GoogleMiniResult::buildMetaData in Google Search Appliance 5
Same name and namespace in other branches
- 6.2 GoogleMini.php \GoogleMiniResult::buildMetaData()
1 call to GoogleMiniResult::buildMetaData()
File
- ./
GoogleMini.php, line 392
Class
Code
function buildMetaData() {
foreach ($this->result->MT as $metaTag) {
$name = $metaTag['N'];
$value = $metaTag['V'];
$this->metaData[(string) $name] = (string) $value;
}
}