fab2008 wrote: > > Yes, it does work!!! > > Now I have to refactor all my module classes to match the new names, but I > think that this will bring a lot of improvements to my code. > > Thanks for the advice. > > Only one thing on which I'm not glad, before this update my models doesn't > have any prefix, so I had classes like Customers, Orders, etc. In this way > in my controller I can write > > $customer = $customers->getById($id); > $customersOrders = $customer->findOrders(); > > now this become > > $customer = $customers->getById($id); > $customersOrders = $customer->findAdmin_Model_DbTable_Orders(); > > and this is pretty ugly, don't you think?? >
I'm also still learning Zend FW, so I don't know... I suppose that's how Autoloader works... if u find out how to avoid using whole class namespace, please let me know. GL -- View this message in context: http://www.nabble.com/Zend_Application_Module_Bootstrap-doesn%27t-work-with-default-module-tp24062377p24090432.html Sent from the Zend Framework mailing list archive at Nabble.com.