To achieve complete Doctrine 1 integration with Zend Framework some glue is required, Benjamin Eberlei has created a complete solution thats straight forward, easy to use and understand. This project tries to offer a complete Integration of Doctrine 1 with Zend Framework. The following components belong to this Integration: Zend_Application Resource Zend Framework Modular Project […]
Rob Allen posts; I’ve updated Akrabat_Db_Schema_Manager so that it now supports table prefixes. It uses the application.ini key of resources.db.table_prefix as I couldn’t think of a better one and then uses that for the schema_version table’s name and also makes it available in your change objects. For example, if application.ini contains resources.db.table_prefix = “myapp”, then […]
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 […]
Chris Morrell writes; In most of my applications I like to handle authorization (querying the ACL) in one (or more) of three ways: Authorize access to a model’s method Authorize access to a controller action Authorize access to an arbitrary “permission” In general I find it’s best to keep authorization within the domain (querying the ACL […]
Jon Lebensold publishes another screen cast on the Doctrine topic; This short video is going to be the last in my 2009–2010 series on Doctrine 1.2. I’m wrapping it up with a little example of adding timestamps, logging and using Doctrine’s event listener architecture. Grab a copy of the project or browse the repository. view screencast; […]
There’s been a lot of talk online about finding the best approach for bringing Zend Framework and Doctrine 1.x together. This video is my humble approach of combining some of the learning brought about over the last few weeks on Zendcasts, as well as suggestions from Doctrine developers. The goal of this video is to […]
Michelangelo van Dam has written an excellent article on how to work with Zend Framework data models. Read this article here DragonBe’s PHP blog: Zend Framework data models.
Paul M. Jones writes an interesting article about generating models using Solar Models plus makes a very cool implementation. Paul M. Jones » Blog Archive » Solar Models vs. Zend Framework Models. His work is based on the http://www.dragonbe.com/2010/01/zend-framework-data-models.html article about the Solar Framework.
Joey Rivera wrote a very interesting and time saving article about the Zend_CodeGenerator complete with a easy to use code snippet that will create the model and DbTable files and classes for you, as it picks the information directly from your database, it’s no way those pesky typos and cut and paste mistakes creep in […]