What are components in CakePHP. List some commonly used CakePHP components ?

devquora
devquora

Posted On: Apr 26, 2024

 

In CakePHP, components are packages of logic that are shared between controllers. CakePHP comes with a fantastic set of core components you can use to aid in various common tasks.Using component in your application makes your controller code cleaner and allows you to reuse code between different controllers.

Below are the list some commonly used CakePHP components

  • Authentication
  • Cookie
  • Cross Site Request Forgery
  • Flash
  • Security
  • Pagination
  • Request Handling

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Cakephp Interview Questions

    What is CakePHP ?

    CakePHP is an open-source free web framework written in PHP scripting Language for rapid web development...

    Cakephp Interview Questions

    What is MVC in CakePHP?

    MVC stands for the model view controller.MVC is not a design pattern, it is an architectural pattern that describes a way to structure our application and explains the responsibilities and interaction..