Zend Framework: Surviving The Deep End
Table of Contents
- 1. Introduction
- 2. The Architecture of Zend Framework Applications
- 3. The Model
- 4. Installing The Zend Framework
- 5. A Not So Simple Hello World Tutorial
- 6. Standardise The Bootstrap Class With Zend_Application
-
- 6.1. Introduction
- 6.2. Step 1: Editing the ZFExt_Bootstrap Class
- 6.3. Step 2: Editing The Index and htaccess Files
- 6.4. Step 3: Adding The Application Configuration File
- 6.5. Step 4: Handling Setting Of Standard Component Defaults
- 6.6. Step 5: Fixing ZFExt_Bootstrap
- 6.7. Step 6: Integrating Application Configuration Into Resource Methods
- 6.8. Step 7: Optimising Autoloading Code
- 6.9. Allowing Zend_Loader_Autoload Load Namespaced Classes
- 6.10. Conclusion
- 7. Handling Application Errors Gracefully
- 8. Developing A Blogging Application
- 9. Implementing The Domain Model: Entries and Authors
- 10. Setting The Design With Zend_View, Zend_Layout, HTML 5 and Yahoo! User Interface Library
-
- 10.1. Introduction
- 10.2. Zend_View: Object Oriented Templating
- 10.3. The ZFBlog Application Setup
- 10.4. Creating An Index Page With HTML 5
- 10.5. Extracting Static Markup Into A Layout
- 10.6. Replacing Changeable Elements With Placeholders
- 10.7. Improving HTML 5 Support With Custom View Helpers
- 10.8. Adding A Link To A Custom Stylesheet
- 10.9. Customising The Style
- 10.10. Conclusion
- A. Creating A Local Domain Using Apache Virtual Hosts
- B. Performance Optimisation For Zend Framework Applications
- C. Copyright Information