Hello, I have the following two classes.
Settings:
/* Settings */
class Settings{
function __CONSTRUCT(){
echo "Settings Construct";
}
}
/* PageManager */
class PageManager extends Settings{
function __CONSTRUCT(){
echo "PageManager Construct";
}
}
$page = new PageManager();
I thought that would work fine, but it only runs PageManager's construct. I'm guessing it's because I override the Setting's function. Is there some way I can call the original function?