[fw-general] Where is my Zend_Config???

2009-08-11 Thread christal
>From the examples in the document, it looks like Zend_Config is initialized in the root index.php file. Now how do I access this instance from my controller? class FooController extends Zend_Controller_Action { public function indexAction() { // I need my $config } } --

Re: [fw-general] Where is my Zend_Config???

2009-08-11 Thread Hector Virgen
There are a couple ways to store the config. In the past I've stored it in Zend_Registry, which can be pulled out later at any time: // in bootstrap Zend_Registry::set('config', $config); // in controller $config = Zend_Registry::get('config'); Another option is to store it directly in the front

Re: [fw-general] Where is my Zend_Config???

2009-08-11 Thread christal
ah great! thanks for the reply. I guess this would be cleaner than using a global variable. Hector Virgen wrote: > > There are a couple ways to store the config. In the past I've stored it in > Zend_Registry, which can be pulled out later at any time: > // in bootstrap > Zend_Registry::set('co