Hi,
Can classes and objects have a parent to multiple child relationship. Such as, I am trying to make a program with module type basis. So, not all the child classes will need to be loaded. Hierarchy like:
+ Forum Program Main API
- Messaging
- Tracking
- Favorites
- Site Links
But, sometimes one of the childs will be disabled and not loaded. I have tried extends so a child class will extend a parent class but whenever a subsequent child class gets loaded, the previous class gets dismissed along with its functions and variables.
I also can't have it be Messaging extends the main, then tracking extends messaging, and favorites extends tracking because if messaging isn't loaded and tracking tries there will be an error.
Any help would be fabulous. Thanks