Tuesday, January 26, 2016

Re: How To / Example of OO Inheritance for CakePHP 3

Do the official Tutorials, they'll teach you how to work with CakePHP.

http://book.cakephp.org/3.0/en/tutorials-and-examples.html

The level of abstraction in CakePHP is higher than what you describe, you don't implement these methods on model or table objects, entities represent data. They represent data objects and you can implement accessors and mutators to implement more specific behavior than a simple getter and setter. I highly recommend you to read the documentation.

On Monday, January 25, 2016 at 4:50:52 PM UTC+1, Willem wrote:

how would one create a CakePHP3 app and what database tabels would i need to create an app that uses inheritance.

for example fictional setup:

[Person] <--- [Customer]
[Person]<--- [Manager]

All Persons have "name". Customer has "order_amount". Manager has "sales_total". 

Person has a method "getName()" , which is avavailable through inheritance in Customer and manager.

Person is the parent class and Customer and manager are the child-classes.

How would i implement this in CakePHP?

I could create a customer and manager database table and bake this to two models. but that would mean that the getName() function would be implemented in both classes. 

Could somebody help me grasp this in cakephp? thanks.

--
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

---
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cake-php+unsubscribe@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at https://groups.google.com/group/cake-php.
For more options, visit https://groups.google.com/d/optout.

No comments: