New Search

If you are not happy with the results below please do another search

73 search results for: one page

73

CakePHP Naming Conventions

CakePHP requires us to follow certain convention. In this way, we will have very uniform system development, have free functionality, and save time over tracking configuration files! :)1. Create a Model  directory: app/models/ filename: post.php  classname: Post extension: class Post extends AppModel The filenames of models are always singular. And its classnames are CamelCased. 2. Create a Controller  directory: app/controllers/ filename: posts_controller.php classname: PostsController extension: class […]