Book Image

FuelPHP Application Development Blueprints

By : Sebastien Drouyer
Book Image

FuelPHP Application Development Blueprints

By: Sebastien Drouyer

Overview of this book

Table of Contents (13 chapters)
FuelPHP Application Development Blueprints
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Specifications


First of all, let's define what should be expected in our final application as follows:

  • A to-do list is created to monitor the progress of a project. A project is described by a name and has many tasks (the to-do list). We will assume here that a user could have many simultaneous projects and, therefore, can create and manage as many projects as he/she wants. Each project can also be deleted.

  • A task is described by a name and has a Boolean status ("done" or "not done").

  • Tasks are ordered in the project and the user should be able to easily move items in the list using drag and drop.

This is still a simple application, and we won't support any privacy feature such as authentication (this will be addressed in Chapters 3, Building a Blog Application and Chapter 5, Building Your Own Restful API).