Is there a best practice approach for storing the db, config and the log
object so they don't have to get loaded with Zend_Registry::get('..'); ?
It's more than ugly to have
$_db = Zend_Registry::get('db');
$_acl = Zend_Registry::get('acl');
$_log = Zend_Registry::get('logger');
$_config = Zend_Registry::get('config');
all over the place.
