I was wondering if I am doing this right.
I have a page index.php that loads the appropriate module (an include file) depending on what was passed to the index.php. The module will load the appropriate class needed which is an extended class of class_common. The module might also load common includes like one for navigation. The navigation include requires methods from class_common. Since I am not sure which extended class will be created the only way I can think of for this to work is when I load my module the object name needs to always be the same regardless of the extended class being loaded.
This way my common includes loaded by the module will always know how to access class_common methods.
I hope this makes sense. If not I am probably doing it completely wrong. :queasy: