Interview Questions

What is the naming convention in cakephp?

CakePHP Interview Questions and Answers


(Continued from previous question...)

What is the naming convention in cakephp?

Table names are plural and lowercased,model names are singular and CamelCased: ModelName, model filenames are singular and underscored: model_name.php, controller names are plural and CamelCased with *Controller* appended:
ControllerNamesController, controller filenames are plural and underscored with *controller* appended: controller_names_controller.php,

(Continued on next question...)

Other Interview Questions