Hi, I'm working on a simpla CMS. And I'd like to create a public function that calls up all the nessecery classes and functions for the theme to run correctly. And not sure if it is possible to create something like the following.
function CMS_head() {
$class1 = new class1();
$class2 = new class2();
$class2 = new class3();
$class1->func1();
$class2->func2();
$class3->func3();
}
So they don't need to call each class and function one by one.