I'm currently trying to implement Google Docs to a website. I'm using Zend Framework by the way and I'm using the Zend GDocs API.
My question is - how can I get the file extension of any files and documents? It's no problem getting a list of the files, but i really need the file extension too.
$docs = new Zend_Gdata_Docs($client);
$feed = $docs->getDocumentListFeed($url);
$this->view->feed = $feed;
foreach($this->feed as $item) {
echo $item->getTitle();
}
Thanks for your help and time.
Steffen