Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to OOP and MVC, but have been programming procedurally with PHP for several years. Now its time to dive into OOP and MVC. I have installed a new web app with Yii and need a bit of direction. My client wants me to fork a website from the procedural PHP I coded to the Yii framework using OOP. The website contains recipes, comments, user registration, submit recipes, comment on them, manage their account, etc. Also, will be adding a new feature of user badges and tags similar to how SO uses them.

My question is how to come up with a plan of attack using OOP. Would it be best to have a controller for each feature of the website, like RecipeController, and TagsController, and ViewRecipeController, BadgesController, AccountController, etc. or is that too simplified?

Sorry, but with this being my first venture into OOP, and a framework, I'm a bit hesitant to start blindly. I have seen plenty of Hello World tuts but they don't reveal much else than the very basics. I'm looking for more information about planning the project and how to break it down into parts so it is logical and I won't have to start over a week from now because I didn't think of something or didn't know at the time. Just trying to get all my ducks in a row first.

Thanks for the assistance!

share|improve this question

closed as not constructive by cHao, Jake McGraw, HackedByChinese, Barmar, sachleen Oct 16 '12 at 4:04

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 6 down vote accepted

The Yii approach to this is to start with data abstraction - as a matter of fact, it is a good starting point for any general OO project.

So first, you'd need to think about what type of objects (i.e. classes) will be the building blocks of your site. Recipe is a natural one. User is another. A comment might be a base class, or maybe you'd want to do a more general apporach and create an annotation class - which could serve as marking all user interaction (comment, like, vote, bookmarks, whatever) on a given piece of content (i.e. recipe). These are design decisions that you'll need to tackle at the very beginning of your project.

If you have your set of classes, think about what properties will they have. A recipe has a title, a long description (directions for preparing), list of ingredients, difficulty, etc. A user has a username, email address, password, profile picture, DOB, location, etc.

By looking at those classes with all the properties, it might be the time for your first refactoring - you might realize that ingredients need their own classes (if you provide detailed information and pictures of different ingredients on your site).

By interactively defining and refining these object types and their properties you'll reach a point where you say you're done for the moment. As a result of this process you have your data model.

In yii, you build your application starting from designing the database schema, so now you have to turn all your object types and their properties into table definitions. The beauty of yii is that from the db schema it will create the appropriate data model classes (the php class wrappers around your database), and the necessary controllers and views for the basic CRUD operations (CRUD stands for create, read, update, delete).

Even though you only defined your database tables so far, you've already reached a point where you can add/list/delete recipes and users, and all this comes with (almost) automatic data validation both at the client and the server side. Pretty neat, I think.

Of course, your real world application will be much more complicated than just the basic CRUD operations, so here is the point where you start to define custom controller methods and views to implement more sophisticated functionality.

As guidlines:

  1. make sure your data model is a good abstraction of the real world problem you're facing
  2. make sure you follow this tutorial about how to create a fully functional bloggin system with yii
  3. make sure you search the yii extension repository to find already written modules that you might need. The whole user registration is right there, for example, you only need to drag and drop it into your installation and you're done.
share|improve this answer
Excellent advice ...really like the annotation class idea. If I am converting a site to Yii that already has a database, can I use that db, or would it be best to start over there too? The more I read about MVC, the more it makes sense ...only problem is I think I need to keep reading to get a better grasp of all of this before I get started. Going from cowboy code to all this convention over configuration is making my mind twirl :) – Mark Jun 10 '11 at 2:46
@Mark, if you're convinced that your current database structure is perfectly suitable for your purposes, there is no reason not to use it with your new yii project. However if you feel there is room for improvement, this is the perfect opportunity to do some refactoring on the schema level as well. Going from procedural to OO thinking is not a trivial step, but very well worth the effort. You'll find yourself tackling larger-scale projects much easier when thinking in objects comes naturally to you. – András Szepesházi Jun 10 '11 at 8:21

If you are first time with Yii, try to create a one feature with Yii. Just place yii to a subfolder and start implement one option of old site. You learn more in process and will find a future solutions for your site during implementation.

So just start =)

share|improve this answer
1  
Yes ...just start ....sounds easy enough in theory ...just not sure where the starting line is :) It'll all work out eventually ....no worries. – Mark Jun 10 '11 at 2:48

I would also highly recommend working through the blog tutorial as it will show you more about how the various pieces work together.

In terms of controllers, it's more about grouping functions that share similar properties, permissions, etc. It also somewhat depends on how many functions you have -- those high-level functions you mentioned certainly seem like a good start, but if they should be separate controllers is up to how you architect the application. Certainly you want to build classes around those functions (which you can store as components).

Another consideration is your URL structure - do you want to construct URLs around a controller/action pattern? If so, having separate controllers may be the way to go. While you can use the URL manager to specify almost any route, you generally don't want a ton of rules in there.

I would also recommend this book for PHP programmers moving to OOP: PHP Objects, Patterns, and Practice

share|improve this answer
Thanks for the book recommendation ...I have been seriously considering a book to help explain it all. I did go through the blog tutorial, but sill a bit perplexed as to how to plan a MVC site with Yii. Also, Yes, I am definitely considering a SEO style of URL so that is one more thing I need to work out. – Mark Jun 10 '11 at 2:41

Not the answer you're looking for? Browse other questions tagged or ask your own question.