i don't believe the thumbnail methods are
implemented for php or at least not for
zend within a gdata context directly.

you might extend an existing class or
grab the per-entry dom for example:

$egd = $entry->getDom();
$tns = $egd->getElementsByTagName("thumbnail");
foreach($tns as $tn) {
  echo "nam: " . $tn->nodeName . "\n";
  echo "val: " . $tn->nodeValue . "\n";
  echo "typ: " . $tn->nodeType . "\n";
}
###
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Base Data API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Base-data-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to