资 源 简 介
personal-home-page-framework
personal-home-page-framework (_php-f_ in short) is a php framework. I takes the best from Rails framework and adds some new breath to frameworking system itself.
Currently no more info is given because this project is still in alpha stage so usage in full blown production sites wouldn"t be nice :)
If you like you can check out current version of this project and try to fire it by reading the comments provided in the source files.
You will, probably, need a few things, that cannot be read in the comments and cannot be figured out directly.
For simpler Model method calls
By default you can call Model methods (for example find()) like this:
$article = new News();$article = $article->find(1);
But there is a one-liner possible as well. You have to provide this function in each of your models (I use a snippet - you should to):