Categories

  • News Rss feed News

    Stay up on all the happenings in CakePHP
  • Articles Rss feed Articles

    Learn from Tutorials, Share something of General Interest, or Explore Case Studies
    • Case Studies Rss feed Case Studies

      If you built an app with CakePHP, tell everyone how you did it, how CakePHP helped you code it faster, or write a story about a new site you think is a good example of CakePHP power.
    • Tutorials Rss feed Tutorials

      Share your knowledge of CakePHP with the rest of the community. No doubt, everyone will be very grateful. Every developer should feel comfortable adding a tutorial. If you are new to CakePHP, add a beginner tag to your tutorial. Other beginners will enjoy reading how you started. If you learned a neat trick, show everyone how clever you are. If you are an experienced Baker, impress everyone with your skills.
    • General Interest Rss feed General Interest

      An open space to share your ideas and opinions.
  • Code Rss feed Code

    Share some code with the CakePHP community
    • Components Rss feed Components

      Components are use to aid and assist controllers in performing their business logic. They extend Object and do not have direct access to the model. Typical usage is in Authentication, Filtering, and Rendering controls. Examples: EmailComponent, AuthComponent, ImageComponent.
    • Helpers Rss feed Helpers

      Helpers extend the functionality of the view and enable you to keep the templates clean. In the class you can place some display logic or organize some view specific code. Examples include AjaxHelper, TreeHelper, FormHelper.
    • Models Rss feed Models

      Models allow interaction with a datasource. A datasource can be a database, an xml document, or the file system. The Model typically performs the CRUD (create, read, update, delete) operations on the data.
    • Plugins Rss feed Plugins

      Plugins are mini-applications, but are easier to distribute and just drop into the main application. They extend the functionality of the application by providing a self-contained MVC for a specific part of your application. Examples could include a Gallery, a Blog, or a Forum.
    • Snippets Rss feed Snippets

      Every once in a while we stumble upon great little pieces of code that can make our lives easier. These pieces might be helper methods, AppController methods, AppModel methods, etc. Share your tasty morsels of PHP code.
    • Behaviors Rss feed Behaviors

      Behaviors help the Model handle data. Examples include List, Tree, etc.