cakephp naming conventions

来源:互联网 发布:辐射3 mac 编辑:程序博客网 时间:2024/05/18 01:06

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


associations should use the ModelName, and the order should match the order of the foreignKeys: var $belongsTo = ‘User’;


foreign keys should always be: table_name_in_singular_form_id: user_id (foreign key) → users (table)


many-to-many join tables should be named: alphabetically_first_table_plural_alphabetically_second_table_plural: tags_users


columns in many-to-many join tables should be named like other foreign keys: tag_id and user_id


columns named “created” and “modified” will automatically be populated correctly
原创粉丝点击