/ Published in: PHP
Drop the Zend Framework Library folder into your Vendors folder
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// Create a script in your Vendors folder called zf_include_path.php with the following statement: // In your action, just do the following, replacing Gdata.php with whatever library you wish to load (i.e. Loader.php): function myAction() { App::import('Vendor', 'zend_include_path'); App::import('Vendor', 'Zend_Gdata', true, false, 'Zend/Gdata.php'); }