Tag Archives: Zend Framework

Bootstrapping Zend Framework Applications

In my previous post I talked about how the Front Controller pattern is implemented in Zend Framework. We saw how every application request can go through the public/index.php script. Everything that your application does is then eventually called from either the bootstrap() or run() method in Zend_Application. One of the constructor arguments passed to Zend_Application […]

Front Controller Pattern in Zend Framework

I recently gave a Zend Framework Introduction presentation at our local PHP Users Group. I built a demo blogging application called Postr that I used as an example throughout the presentation. There was way too much material to cover in the time available so I plan on writing a series of blog posts, each covering […]

Zend Framework Introduction

Slides from last night’s Zend Framework Introduction at the Burlington, Vermont PHP Users Group are now available online: Zend Framework Introduction View more presentations from Bradley Holt. The presentation is available under a Creative Commons license. As I mentioned earlier, there’s also a demo blogging application called Postr available on GitHub. The application is available […]

Learn Zend Framework

At tonight’s (Thursday, January 28, 2010) Burlington, Vermont PHP Users Group meeting I’ll be giving a Zend Framework Introduction presentation. I’ll be covering how to use several features of Zend Framework and common patterns including: Zend_Tool Zend_Application Model-View-Controller (MVC) Zend_Layout Action Controllers View Scripts Zend_Test Modeling domain objects Zend_Form Zend_Db_Table Data Mapper Zend_Paginator Zend_Date Zend_Markup […]

Zend Framework Route Context Plugin

I want to share a simple, yet very useful, custom Zend Framework plugin that we use on almost all of our projects. The plugin (and associated code in the layout file) provides the Zend Framework route context as CSS classes on the body element. This allows us to change the design (using CSS) and/or behavior […]

Year In Review

Being the first day of 2010, I thought it would be a good time to take a look back at 2009… Burlington, VT PHP Users Group 2009 was the second full year of the Burlington, VT PHP Users Group. We had some fun meetings and presentations including: January Jason Pelletier gave a presentation on CSS […]

Common Good Vermont

The other day we launched the first iteration of the Common Good Vermont website. From the about page: Vermont (pop. 621,000) is a small, tightly knit rural state proud of its independent spirit and high levels of civic engagement. Vermont’s independent sector (3000+ organizations, $4 billion annual revenue) plays a primary role in the delivery […]

RedEye Universal Remote Control

Today one of our clients, ThinkFlood, launched their RedEye Universal Remote Control for the iPhone and iPod touch. The device and application combination allows you to “use your iPhone or iPod touch to control your TV, stereo, cable box, DVD player, and many other devices that receive standard (infrared) signals.” The product launch got some […]

Bug Hunting

If you are a PHP developer in the Burlington, Vermont area then you should come to tomorrow (11/19) evening’s PHP Users Group meeting at the newly opened Office Squared coworking space in downtown Burlington. This month we will be learning how to find and fix bugs in free and open source projects. From the meeting […]

Domain-Driven Design

I am currently reading Eric Evans’ Domain-Driven Design book. Having read most of the book I can say that his presentations on Putting the Model to Work and Strategic Design are an amazingly concise overview of the book’s content (note that InfoQ provides slides below the videos). If you’ve been interested in reading the book […]