Hi,
I'm just peeping into Zend_Application
and I don't figure out what sort of information
go into $options['config'].

 if (!empty($options['config'])) {
            if (is_array($options['config'])) {
                $_options = array();
                foreach ($options['config'] as $tmp) {
                    $_options = $this->mergeOptions($_options,
$this->_loadConfig($tmp));
                }
                $options = $this->mergeOptions($_options, $options);
            } else {
                $options =
$this->mergeOptions($this->_loadConfig($options['config']), $options);
            }
        }

Could you enlighten me, please ?

Bye.
-- 
View this message in context: 
http://zend-framework-community.634137.n4.nabble.com/Zend-Application-setOptions-what-s-options-config-tp2227164p2227164.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to