Agile Web Application Development with Yii1.1 and PHP5

Jeffrey Winesett

500 Internal Server Error

500 Internal Server Error


nginx
Free Shipping! UK, US, Europe and selected countries in Asia.
Also available on:
Overview
Table of Contents
The Author
Reviews
Downloads
  • A step-by-step guide to creating a modern, sophisticated web application using an incremental and iterative approach to software development
  • Build a real-world, user-based, database-driven project task management application using the Yii development framework
  • Take a test-driven design (TDD) approach to software development utilizing the Yii testing framework
  • Write less code by using Yii's application generation and scaffolding tools
  • Enhance your application by adding Web feeds, adapting it to multiple languages, and by utilizing themes to provide beautiful skins and design flexibility

Book Details

Language : English
Paperback : 368 pages [ 235mm x 191mm ]
Release Date : August 2010
ISBN : 1847199585
ISBN 13 : 978-1-847199-58-4
Author(s) : Jeffrey Winesett
Topics and Technologies : All Books, Open Source, Web Development


Table of Contents

Preface
Chapter 1: Meet Yii
Chapter 2: Getting Started
Chapter 3: The TrackStar Application
Chapter 4: Iteration 1: Creating the Initial TrackStar Application
Chapter 5: Iteration 2: Project CRUD
Chapter 6: Iteration 3: Adding Tasks
Chapter 7: Iteration 4: User Management and Authentication
Chapter 8: Iteration 5: User Access Control
Chapter 9: Iteration 6: Adding User Comments
Chapter 10: Iteration 7: Adding an RSS Web Feed
Chapter 11: Iteration 8: Making it Pretty - Design, Layout, Themes, and Internationalization(i18n)
Chapter 12: Iteration 9: Modules - Adding Administration
Chapter 13: Iteration 10: Production Readiness
Index
  • Chapter 1: Meet Yii
    • Yii is easy
    • Yii is efficient
    • Yii is extensible
    • MVC architecture
      • The model
      • The view
      • The controller
    • Stitching these together: Yii request routing
      • Blog posting example
    • Object-relational mapping and Active Record
      • Active Record
    • The view and controller
    • Summary
  • Chapter 2: Getting Started
    • Installing Yii
      • Installing a database
    • Creating a new application
    • Hello, World!
      • Creating the controller
      • One final step
      • Reviewing our request routing
    • Adding dynamic content
      • Adding the date and time
      • Adding the date and time, a better approach
        • Moving the data creation to the controller
      • Have you been paying attention?
    • Linking pages together
      • Linking to a new page
      • Getting a little help from Yii CHtml
    • Summary
  • Chapter 3: The TrackStar Application
    • Introducing TrackStar
    • Creating user stories
      • Users
      • Projects
      • Issues
    • Navigation and page flow
    • Defining a data scheme
    • Defining our development methodology
      • Automated software testing
      • Unit and functional testing
      • Benefits of testing
      • Test-driven development
    • Testing in Yii
      • Unit tests
        • Installing PHPUnit
      • Functional tests
        • Installing Selenium
        • Running a quick example
      • Hello TDD!
    • Summary
  • Chapter 5: Iteration 2: Project CRUD
    • Iteration planning
      • Running our test suite
    • Creating the project table
      • Naming conventions
    • Creating the AR model class
      • Configuring Gii
      • Using Gii to create our Project AR class
      • Testing out our newly generated code
        • Creating the unit test file
        • Testing create
        • Testing read
        • Testing update and delete
      • Was all that testing really necessary?
    • Enabling CRUD operations for users
      • Creating CRUD scaffolding for projects
      • Creating a new project
        • Adding a required field to our form
      • Reading the project
      • Updating and deleting projects
      • Managing projects in admin mode
    • More on testing—fixtures
      • Configuring the fixture manager
      • Creating a fixture
      • Configuring this fixture for use
      • Specifying a test database
        • Using fixtures
    • Summary
  • Chapter 6: Iteration 3: Adding Tasks
    • Iteration planning
    • Running the test suite
    • Designing the schema
      • Defining some relationships
      • Building the database and the relationships
    • Creating the Active Record model classes
      • Creating the Issue model class
      • Creating the User model class
    • Creating the Issue CRUD operations
      • Using the Issue CRUD operations
    • Creating a new Issue
      • Adding the types drop-down menu
      • Getting the test in the "Red"
      • Moving From "Red" To "Green"
      • Moving Back To "Red"
      • Getting back to "Green" once again
      • Adding the issue type dropdown
      • Adding the status drop-down menu: Do it yourself
    • Fixing the owner and requester fields
      • Enforcing a project context
      • Implementing a filter
      • Adding a filter
      • Specifying the filtered actions
      • Adding some filter logic
      • Adding the project ID
      • Altering the project details page
      • Removing the project input form field
    • Returning back to the owner and requester dropdowns
      • Generating the data to populate the drop-down menu
      • Adding User and ProjectUserAssignment fixtures
      • Making one last change
    • Finishing the rest of the CRUD
      • Listing the issues
      • Altering the ProjectController
        • Altering the project view file
    • Making some final tweaks
      • Getting the status and type text to display
      • Adding the text display to the form
      • Changing the issue detail view
      • Getting the owner and requester names to display
      • Using relational AR
    • Making some final navigation tweaks
    • Summary
  • Chapter 7: Iteration 4: User Management and Authentication
    • Iteration planning
    • Running the test suite
    • Creating our User CRUD
      • Updating our common audit history columns
      • Adding a password confirmation field
      • Adding password encryption
    • Authenticating users using the database
      • Introducing the Yii authentication model
        • Changing the authenticate implementation
    • Updating the user last login time
      • Displaying the last login time on the home page
    • Summary
  • Chapter 8: Iteration 5: User Access Control
    • Iteration planning
    • Running our existing test suite
    • accessControl filter
    • Role-based access control
      • Configuring the authorization manager
      • Creating the RBAC database tables
      • Creating the RBAC authorization hierarchy
        • Writing a console application command
      • Assigning users to roles
      • Adding RBAC roles to projects
        • Adding RBAC business rules
        • Implementing the new Project AR methods
      • Adding Users To Projects
        • Altering the Project model class
        • Adding the new form model class
        • Adding the new action method to the project controller
        • Adding the new view file to display the form
        • Putting it all together
    • Checking authorization level
    • Summary
  • Chapter 9: Iteration 6: Adding User Comments
    • Iteration planning
    • Creating the model
    • Creating the Comment CRUD
    • Altering the scaffolding to meet requirements
      • Adding a comment
      • Displaying the form
    • Creating a recent comments widget
      • Introducing CWidget
        • More on relational AR queries in Yii
        • Completing the test
        • Creating the widget
    • Summary
  • Chapter 10: Iteration 7: Adding an RSS Web Feed
    • Iteration planning
    • A little background: Content Syndication, RSS, and Zend Framework
    • Installing Zend Framework
    • Using Zend_Feed
    • Creating user friendly URLs
      • Using the URL manager
        • Configuring routing rules
        • Removing the entry script from the URL
    • Adding the feed links
    • Summary
  • Chapter 11: Iteration 8: Making it Pretty - Design, Layout, Themes, and Internationalization(i18n)
    • Iteration planning
    • Designing with layouts
      • Specifying a layout
      • Applying and using a layout
    • Deconstructing the main.php layout file
      • Introducing the Blueprint CSS framework
        • Understanding the Blueprint installation
      • Setting the page title
      • Defining a page header
      • Displaying menu navigation items
      • Creating a breadcrumb navigation
      • Specifying the content being decorated by the layout
      • Defining the footer
    • Nesting the layouts
    • Creating themes
      • Building themes in Yii
      • Creating a Yii theme
      • Configuring the application to use a theme
    • Translating the site to other languages
      • Defining locale and language
      • Performing language translation
        • Performing message translation
        • Performing file translation
    • Summary
  • Chapter 12: Iteration 9: Modules - Adding Administration
    • Iteration planning
    • Modules
      • Creating a module
      • Using a module
      • Theming a module
        • Applying a theme
    • Restricting admin access
    • Adding a system-wide message
      • Creating the database table
      • Creating our model and CRUD scaffolding
      • Adding a link to our new functionality
      • Displaying the message to users
        • Importing the new model class for application-wide access
        • Selecting the most recently updated message
        • Adding a little design tweak
    • Summary
  • Chapter 13: Iteration 10: Production Readiness
    • Iteration planning
    • Logging
      • Message logging
      • Categories and levels
      • Adding a login message log
      • Message routing
    • Handling errors
      • Displaying errors
    • Caching
      • Configuring for cache
      • Using a file-based cache
      • Cache dependencies
      • Fragment caching
        • Declaring fragment caching options
        • Using fragment cache
      • Page caching
    • General performance tuning tips
      • Using APC
      • Disabling debug mode
      • Using yiilite.php
      • Using caching techniques
      • Enabling schema caching
    • Summary

Jeffrey Winesett

Jeffrey Winesett is director of application development at Control Group, Inc. in New York City. He has been building large-scale web-based applications for over 10 years and has been a champion of the Yii framework since its initial alpha version. He frequently publishes articles on specific Yii topics and uses Yii + PHP whenever possible on development projects.

Sorry, we don't have any reviews for this title yet.

Sample chapters

You can view our sample chapters and prefaces of this title on PacktLib or download sample chapters in PDF format.

Find your book in our support section to find errata and to download code samples.

What you will learn from this book

  • Take a "test first" approach to software development using the Yii testing framework
  • Auto-generate skeleton web applications as well as CRUD scaffolding for the domain object model using the built-in command-line interface
  • Create user-based applications with Yii's authentication model
  • Enhance your user-based application to control a user's access to feature functionality
  • Write an administrative console application to extend the features provided by Yii's powerful command-line tools
  • Integrate other frameworks and libraries into a Yii application to further extend its feature set
  • Spend less time managing application configuration by taking advantage of Yii's sensible defaults and conventions.
  • Learn how easy it is to implement a multi-user application by utilizing Yii's authentication and role-based authorization models
  • Update your code to properly mange the user's last login time and store it in the database
  • Achieve pre- and post-action method request processing using controller filters
  • Tap into the CActiveRecord validation workflow to allow for pre- and post-validation processing of your model data
  • Greatly increase re-use, consistency, and ease of maintenance of the application by developing small content blocks called portlets
  • Make your application accessible to the world with internationalization (l18N) features and enhance the looks of your application using the Yii theming model

Special Offers

PacktLib gives you access to this and 600+ other titles with an annual or monthly subscription.
500 Internal Server Error

500 Internal Server Error


nginx
Buy 2 eBooks
and Get 50% Off
+
Buy Agile Web Application Development with Yii1.1 and PHP5 with Object-Oriented Programming with PHP5 and get 50% off both the eBooks.
Just add both the eBooks to your shopping cart and enter ypopeb in the 'Enter Promotion Code' field. Click 'Add Promotion Code' and the discount will be applied.
View Best Selling eBook offers

In Detail

This book is a step by step tutorial in developing a real-world application using the incremental and iterative approach to software development. You learn about agile software development by leaning on the agile nature of the Yii application development framework. You touch on each aspect of the software development lifecycle by building a project task management application from concept through production deployment.

After a brief, general introduction to the Yii framework and outlining the software development approach taken throughout the book, the chapters break down in the same way as software development iterations do in real-world projects. After the 1st iteration, you will have a working and tested application with a valid, tested connection to a database.

In the 2nd and 3rd iterations, we flesh out our main database entities and domain object model and become familiar with Yii's object-relational-mapping (ORM) layer, Active Record. We also learn how to lean on Yii's auto-generation tools to automatically build our create/read/update/delete (CRUD) functionality against our newly created model. These iterations also focus on how Yii's form validation and submission model works. By the end of the third iteration you will have a working application that allows you to mange projects and issues (tasks) within those projects.

The 4th and 5th iterations are dedicated to user management. We learn about the built-in authentication model within Yii to assist in application login and logout functionality. We then dive into the authorization model, first taking advantage of a Yii's simple access control model, then implementing the more sophisticated role-based access control (RBAC) framework that Yii provides.

By the end of the 5th iteration, all of the basics of a task management application are in place. The next several iterations are focused on the nice-to-haves. We add user comment functionality, introducing a reusable content portlet architecture approach in the process. We add in an RSS Web feed and demonstrate how easy it is to integrate other third-party tools within a Yii application. We take advantage of Yii's theming structure to help streamline and design the application, and then introduce Yii's internationalization (I18N) features so the application can be adapted to various languages and regions without engineering changes.

Finally, we turn our focus to production deployment. We introduce ways to optimize performance and security to prepare the application for a real-world production environment.

Learn the Yii development framework by taking a test-driven, incremental, and iterative approach to building a real-world task management application

Approach

This is a step-by-step tutorial for developing web applications using Yii. This book follows the test-first, incremental, and iterative approach to software development while developing a project task management application called "TrackStar".

Who this book is for

If you are a PHP programmer with knowledge of object oriented programming and want to rapidly develop modern, sophisticated web applications, then this book is for you. No prior knowledge of Yii is required to read this book.

Are there no books available that are right for you at the moment? How about signing up to our newsletter to keep up to date?
Awards Voting Nominations Previous Winners
Judges Open Source CMS Hall Of Fame CMS Most Promising Open Source Project Open Source E-Commerce Applications Open Source JavaScript Library Open Source Graphics Software
Resources
Open Source CMS Hall Of Fame CMS Most Promising Open Source Project Open Source E-Commerce Applications Open Source JavaScript Library Open Source Graphics Software
Sort A-Z