alvin567 0 Posted May 27, 2012 Share Posted May 27, 2012 Is there any way to reverse engineer the cakephp application into a class diagram? Link to post Share on other sites
smoseley 4 Posted May 29, 2012 Share Posted May 29, 2012 It's not gonna help you much... Cake's architecture is absolute garbage. You've got Model, AppModel extends Model, your models extend AppModel. Models can contain Behaviors, which automatically get set as class parameters when you "include" them (using Cake's proprietary config arrays), e.g. $this->MyBehavior. You've got Controllers. AppController extends base Controller, your controllers extend AppController. Controllers can contain Models and Components, aain automatically set as class params when "included", e.g. $this->MyModel or $this->MyComponent. Then you've got Views, which aren't really OO. If you "include" $helpers in your Controller, they're available in your views, but as $helper->method(). If you set() params in your action, they're available in your views. That's the limit of view functionality. Good luck! Link to post Share on other sites
alvin567 0 Posted May 30, 2012 Author Share Posted May 30, 2012 how do I differentiate between helper and behaviours?how do I point out the difference? Link to post Share on other sites
smoseley 4 Posted May 30, 2012 Share Posted May 30, 2012 Helpers http://book.cakephp.org/1.3/en/view/1095/Helpers Behaviors http://book.cakephp.org/1.3/en/view/1071/Behaviors Link to post Share on other sites
Recommended Posts
Archived
This topic is now archived and is closed to further replies.