-- tridem-zend <[email protected]> wrote (on Monday, 18 April 2011, 04:07 AM -0700): > You were right, removing the loaders made it less confusing. > I finally managed to extend my abstract class. I accidentally used > namespaces there too though ZF does not support them.
Correction: ZF 1.X simply doesn't *use* namespaces. However, you can still use them within code using ZF 1.X. You'll need to provide your own autoloaders for handling namespaced code, however (you can grab the StandardAutoloader from ZF2 if you want to handle both namespaces and ZF1's vendor prefix style). > I will now copy my business logic from my earlier models to the > entities and then rename 'Entities' to 'Application_Model'. If I am > lucky my application should continue to work smoothly and hopefully > faster! -- Matthew Weier O'Phinney Project Lead | [email protected] Zend Framework | http://framework.zend.com/ PGP key: http://framework.zend.com/zf-matthew-pgp-key.asc -- List: [email protected] Info: http://framework.zend.com/archives Unsubscribe: [email protected]
