alvin567 Posted May 27, 2012 Share Posted May 27, 2012 Is there any way to reverse engineer the cakephp application into a class diagram? Quote Link to comment https://forums.phpfreaks.com/topic/263211-cakephp-reverse-engineer-the-cakephp-model-into-a-class-diagram/ Share on other sites More sharing options...
smoseley 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! Quote Link to comment https://forums.phpfreaks.com/topic/263211-cakephp-reverse-engineer-the-cakephp-model-into-a-class-diagram/#findComment-1349470 Share on other sites More sharing options...
alvin567 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? Quote Link to comment https://forums.phpfreaks.com/topic/263211-cakephp-reverse-engineer-the-cakephp-model-into-a-class-diagram/#findComment-1349738 Share on other sites More sharing options...
smoseley 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 Quote Link to comment https://forums.phpfreaks.com/topic/263211-cakephp-reverse-engineer-the-cakephp-model-into-a-class-diagram/#findComment-1349761 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.