CodeIgniter Forums
How is model/table inheritance supported in CI? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: How is model/table inheritance supported in CI? (/showthread.php?tid=9917)



How is model/table inheritance supported in CI? - El Forum - 07-12-2008

[eluser]Unknown[/eluser]
Hello,

I've read the article on Models (http://ellislab.com/codeigniter/user-guide/general/models.html) but I am still unsure how should I represent the following structure:

Code:
abstract class Object_model
{
   var $name;
   var $colour;
   var $texture;
}

class Cube_model extends Object_model
{
  var $sideLength;
}

class Sphere_nodel extends Object_model
{
  var $radius;
}

What would be the most common way of implementing the above within CodeIgniter?
Would I keep the above hierarchy along with a class-table inheritance?

Thanks in advance.


How is model/table inheritance supported in CI? - El Forum - 07-13-2008

[eluser]nmweb[/eluser]
Class-table-inheritance nor single-table-inheritance are natively supported in CI. Your code looks like a valid way to implement it but it will require a lot of work.