AController class names are plural, CamelCased, and end in Controller.
BFile names match the class names, which are CamelCased. So if you have a class MyNiftyClass, then in CakePHP, the file should be named MyNiftyClass.php
CModel class names are singular and CamelCased.
DTable names corresponding to CakePHP models are plural and underscored.
EField names with two or more words are underscored.
FThe basic pattern for view template file is /app/View/Controller/underscored_function_name.ctp
GVariable name should be CamelCased.