Benjamin Eberlei writes; Hello everyone,
I completed a first version of Zend + Doctrine 1 integration today and want to share it with all you. Since currently the status on a 1.11 release is unclear I contacted all the contributors to various Doctrine-related components and combined them into a single release and wrote some documentation on […]
Aleksey V. Zapparov posts a very nice solution to a very common question when dealing with Bootstrap resources;
Hello,
You can either register precious resources in registry, e.g.:
protected function _initMyResource()
{
$res = ‘foobar’;
Zend_Registry::set(‘myResource’, $res);
return $res;
}
Or you can register the whole bootstrap, so you can place in […]
Matthew Weier O’Phinney writes a very useful article about resource injection; Brandon Savage approached me with an interesting issue regarding ZF bootstrap resources, and accessing them in your action controllers. Basically, he’d like to see any resource initialized by the bootstrap immediately available as simply a public member of his action controller.
So, for instance, if […]
David Caunt wrote up a useful article on command line scripting;
As PHP developers, it is convenient to be able to write command line scripts in PHP. In doing so, you will almost certainly want access to Zend Framework components and their configurations as if you are writing a normal MVC app, but […]