随笔分类 - Zend
Zend
摘要:Upgrading Applications If you have an existing Zend Framework v2 application, and want to update it to the latest versions, you will have some special
阅读全文
摘要:Component migration documentation The following is a list of migration documents for components we ship. zend-code zend-eventmanager zend-hydrator zen
阅读全文
摘要:Migration from Zend Framework v2 to v3 Zend Framework v2 to v3 has been intended as an incremental upgrade. We have even made efforts in the past year
阅读全文
摘要:Using the EventManager This tutorial explores the features of zend-eventmanager in-depth. Terminology An Event is a named action. A Listener is any PH
阅读全文
摘要:Setting up a database adapter zend-db provides a general purpose database abstraction layer. At its heart is the Adapter, which abstracts common datab
阅读全文
摘要:Internationalization If you are building a site for an international audience, you will likely want to provide localized versions of common strings on
阅读全文
摘要:Reviewing the Blog Module Throughout the tutorial, we have created a fully functional CRUD module using a blog as an example. While doing so, we've ma
阅读全文
摘要:Advanced Configuration Tricks Configuration of zend-mvc applications happens in several steps: Initial configuration is passed to the Application inst
阅读全文
摘要:Editing and Deleting Data In the previous chapter we've come to learn how we can use the zend-form and zend-db components for creating new data-sets.
阅读全文
摘要:Making Use of Forms and Fieldsets So far all we have done is read data from the database. In a real-life application, this won't get us very far, as w
阅读全文
摘要:Understanding the Router Our module is coming along nicely. However, we're not really doing all that much yet; to be precise, all we do is display all
阅读全文
摘要:SQL Abstraction and Object Hydration In the last chapter, we introduced database abstraction and a new command interface for operations that might cha
阅读全文
摘要:Preparing for Different Databases In the previous chapter, we created a PostRepository that returns some data from blog posts. While the implementatio
阅读全文
摘要:Models and the ServiceManager In the previous chapter we've learned how to create a "Hello World" Application using zend-mvc. This is a good start, bu
阅读全文
摘要:Introducing the Blog Module Now that we know about the basics of the zend-mvc skeleton application, let's continue and create our very own module. We
阅读全文
摘要:Using zend-paginator in your Album Module TODO Update to: follow the changes in the user-guide use SQLite-compatible SQL syntax, and provide a script
阅读全文
摘要:Using zend-navigation in your Album Module In this tutorial we will use the zend-navigation component to add a navigation menu to the black bar at the
阅读全文
摘要:Unit Testing a zend-mvc application A solid unit test suite is essential for ongoing development in large projects, especially those with many people
阅读全文
摘要:Conclusion This concludes our brief look at building a simple, but fully functional, Zend Framework zend-mvc application. In this tutorial we but brie
阅读全文
摘要:Forms and actions Adding new albums We can now code up the functionality to add new albums. There are two bits to this part: Display a form for user t
阅读全文