- Programming with CodeIgniterMVC
- Eli Orr Yehuda Zadik
- 268字
- 2021-08-06 16:48:04
Chapter 2. Configurations and Naming Conventions
This chapter initially introduces the CI naming conventions. These conventions include the rules, style guide, and CodeIgniter naming spirit. The second part of this chapter will review CI project configurations for built-in resources as well as user-defined or third-party add-on libraries. Note that we will actually build our own project code in the subdirectory application described in Chapter 1, Getting Started, with optionally relative resource directories for our project's self-made resources, such as CSS / Media / jQuery libraries' resources or third-party add-ons, extending the base CI downloaded from the Ellis Labs site or GitHub.
We should remember that developing a CI project is done by replacing/expanding the default provided controllers, views, models, and other resources in a well-defined OOP fashion. We should extend controllers, models, and add additional views as well as use defined helpers or libraries. We can add these from third-party libraries or helpers, or develop new ones for our special project business logic and needs.
The initial step after installing the CI is making the proper configurations for our project requirements, such as database, session, auto-loaded helpers, and the libraries we want.
The CI has a set of configuration files defined in the project directory located at application/config
. These configurations are loaded initially whenever we execute any of our project's CI controllers via a URI call using a browser or issuing an HTTP request via code. The major configuration files are: config.php
, database.php
, autoload.php
, and routes.php
.
We should review each of the major configuration files with its configuration value, which includes recommended value, and possible values.
- Testing with JUnit
- Arduino by Example
- Android Studio Essentials
- Android Application Development Cookbook(Second Edition)
- JavaScript從入門到精通(第3版)
- Oracle Exadata專家手冊
- Access 2010中文版項目教程
- 精通MySQL 8(視頻教學版)
- Getting Started with Electronic Projects
- Java RESTful Web Service實戰(zhàn)
- R語言實戰(zhàn)(第2版)
- Spark技術內幕:深入解析Spark內核架構設計與實現(xiàn)原理
- AngularJS UI Development
- 面向對象分析與設計(第3版)
- Tkinter GUI Application Development Blueprints