Im trying to develop an application in php to download pics from picasa using Zend_Gdata library. My project folder structure is like this:
www(wamp)
/project
test.php
/Zend
/Authentication
/Barcode
.
.
/View
/XmlRpc
As you can see, i havent copied the full Zend Framework. I dont want the full MVC paradigm in this project, just the Zend_Gdata library. Is this the way to do this? Or do i have to use the complete zend framework? Im completely new to Zend.
I found this article at IBM site http://www.ibm.com/developerworks/library/x-picasalbum/ very well explained.
But i cant seem to find the Loader.php file in Zend folder specified in the Listing5 of that tutorial.
// load library
require_once 'Zend/Loader.php';
Zend_Loader::loadClass('Zend_Gdata');
Zend_Loader::loadClass('Zend_Gdata_ClientLogin');
Zend_Loader::loadClass('Zend_Gdata_Photos');
Zend_Loader::loadClass('Zend_Http_Client');
Instead i found this folder Loader in the Zend folder with lots of other loaderClasses. Is that tutorial outdated? (its dated 16-Sep-2008; Zend is now Zend2) Which file in that folder serve the purpose of old Loader.php?