[Solved] How Does The Core Application Components Get Registered?

Hi everyone! I’m just going through “yii-guide-1.1.12.pdf”, and at around page 24 and 25 it says there are 16 “Core Application Components”. And at page 25 it says when a user request is handled as step 3 the application will Register the core components. It’s the registerCoreComponents() function inside the class CApplication that does this right? But I could only see 9 different component names in the list. How and where does the other components get registered.

I am trying to read and understand the code and any help would be greatly appreciated.

If you’re talking about a Web application, there are a few more at CWebApplication::registerCoreComponents.

Thank you very much!