To begin, create a file named index.php and place the code found in Listing 25-1 inside it. The index.php script is known as the front-end controller and, believe it or not, it will be responsible for ensuring that every request for this application receives the appropriate response. This document should reside in your desired application document root. Additionally, in the same directory, create a directory named application, and in that directory create a modules directory, and within that a default directory. Finally, within the default directory create two more directories named controllers and views, and within the views directory create a directory named scripts, each of which you'll use later. Listing 25-1. The Application's Front-End Controller (index.php) <?php // Load the Front Controller class // Instantiate an instance of the Front Controller Class // Point to the module directory // Throw exceptions (useful during debugging) // Start the Front Controller ?> It is assumed the Zend Framework application will reside in the server's document root. However, because this isn't always possible, you can use the setBaseUrl() method to override the front-end controller's default behavior. See the Zend Framework documentation for more information. The Controllers Next we'll create two controllers, namely IndexController.php and AboutController.php. These views should be placed in the directory application/modules/default/controllers. First, create the default controller class (IndexController.php), which defines the action that will occur when the Web site's home page is requested (for the sake of consistency throughout the remainder of this chapter we'll refer to http://www.example.com/ as the target domain). This script is shown in Listing 25-2. Listing 25-2. The IndexController Class (IndexController.php) <?php // Load the Zend_Controller_Action class class IndexController extends Zend_Controller_Action // Accessed through http://www.example.com/ } ?> In this example, I've created a view property named title that will be used to assign the Web page's title. Finally well create one more controller intended to display information pertinent to the Web site's purpose and, for the sake of demonstration, some information about the visiting user. This controller, titled AboutController.php, is displayed in Listing 25-3. Listing 25-3. The AboutController Controller (AboutController.php) <?php // Load the Zend_Controller_Action class class AboutController extends Zend_Controller_Action // Accessed through http://www.example.com/about/ // Accessed through http://www.example.com/about/you/ // Retrieve the user's IP address // Retrieve browser information } ?> Please check back next week for the conclusion to this article.
blog comments powered by Disqus |
|
|
|
|
|
|
|