Пример #1
0
 /**
  * Obtener la ultima foto subida.
  *
  * @return Zend_Gdata_Photos_PhotoFeed
  */
 public function getLastPhotoUpload()
 {
     $query = $this->_photos->newUserQuery();
     $query->setKind("photo");
     $query->setMaxResults("1");
     $entry = $this->_photos->getUserFeed(null, $query);
     return $entry[0];
 }