InterviewSolution
| 1. |
Explain directory structure of codeIgnitor. |
|
Answer» CodeIgnitor directory structure consists of mainly 3 parts.
Application is the main folder for developers where they can find all project files. It consists of models, views, controllers, configuration files, etc. All the project code, a DEVELOPER works with will be in this directory. Main subdirectories of Application are cache, config, CONTROLLER, core, helper, hooks, language, libraries, LOGS, model, views and third_party. Main subdirectories of System are core, DATABASE, fonts, helpers, language, libraries. Inside users-guide, subdirectories which can be found are cilexer and source. It provides complete documentation of FUNCTIONS, libraries, and helpers of CodeIgnitor. A good resource if you stuck or don’t have much knowledge then follow users_guide. |
|