phpcontent-management-system

CMS architecture - PHP


I want to build CMS soon, and I want to know how to build it structurally.. I mean.. All in one class? or somthing like for page = class, gallery = another class.. etc.

I just begginer so I dont know the perffect architecture.


Solution

  • I want to build CMS soon, and I want to know how to build it structurally

    I would advice you to look at the source code of other open source CMS systems like for example joomla! you can learn a lot by looking at other peoples source.

    I just begginer so I dont know the perffect architecture.

    writing a CMS is a complicated task and I would start writing something simpler first like a simple blog(also see video below maybe improving it a little bit) if I stood in your shoes. You should learn to use PHPUnit(TDD) with it and a SCM-system like git/svn to do it properly. Also you should learn things like MVC(see video below).

    All in one class?

    Hell no. I would advice you to watch the screencast create a blog in 20 minutes from codeigniter(sit back and relax). It will teach you the MVC structure which is a must and guide you a little bit in how to write your CMS. Easy to begin and it will make you a better programmer(MVC is important).