I'm building a PHP framework and my english is not the best. There are several classes (database abstraction, module, router,...) in my framework and there is a place where they all have to be initialized and executed together.

  • What is a good name for a "master" class that initializes and runs all other classes?
link|improve this question
name it: master-class – Tim Mar 11 '10 at 19:43
I think the word master doesn't describe its functionality well. It is not like all other classes are childs of it or so. – opue Mar 11 '10 at 19:44
1  
Master_Control_Program, or MCP for short. – psiko.scweek Mar 11 '10 at 19:48
2  
It would be interesting to hear more about what this class does exactly. Maybe see some meaningful parts of the code or the function declarations? There might be a fixed expression for it. – Pekka Mar 11 '10 at 19:48
1  
Oh and could somebody please +1 this for me? I'm out of votes. – Pekka Mar 11 '10 at 19:48
show 2 more comments
feedback

15 Answers

BuckarooBonzaiAndTheBootstrapInitiatorRoutine

link|improve this answer
2  
Personally, all of my own PHP frameworks use this name somewhere. For the record, I have written no PHP frameworks. – Jonathan Oct 18 '11 at 12:40
feedback

bootstrap

adding random text since it won't let me submit otherwise

link|improve this answer
That would have been my name of choice but the bad thing about is that I already have a bootstrapper.php. It loads all class files and initializes the class I'm searching the name for here! :D – opue Mar 11 '10 at 19:50
feedback

root?

adding random text since it won't let me submit otherwise

link|improve this answer
feedback

Whatever you want to call the framework?

link|improve this answer
feedback

You can name it Delegator.

link|improve this answer
feedback

What is a good name for a "master" class that initializes and runs all other classes?

ClassFactory

link|improve this answer
feedback

Why not TypeYourAppNameHere?

link|improve this answer
feedback

core

adding random text since it won't let me submit otherwise

link|improve this answer
All the classes together are already the core of my framework - the class that initializes and manages all of them isn't the core. – opue Mar 11 '10 at 19:47
feedback

bootstrapper

adding random text since it won't let me submit otherwise

link|improve this answer
feedback

Driver?

adding random text since it won't let me submit otherwise

link|improve this answer
feedback

Gennerally that would be the name of your framework.

$Opue

would work nicely. Or you could add a prefix. fwOupe.

link|improve this answer
feedback

I use an Application singleton:

class Foo 
{
  public function bar()
  {
    $app = Application::getInstance();
    $app->db->query( ... );
  }
}
link|improve this answer
feedback

I will call it main. The C++ main function does the same things in some projects - just create instances of some important classes.

link|improve this answer
feedback

GlobalFactory ?

link|improve this answer
feedback

It's an initialisation or bootup routine right? So why not Boot or GlobalInitialiser or similar?

(adjust to crazy American spelling as needed ;))

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.