Expression Engine Controllers
Im building my first site in Expression Engine, I was wondering how to use custom controllers in EE, like I would in Codeigniter, or what is the EE equivalent? Controllers are the heart of your application, as they determine how HTTP requests should be handled. As you're probably well-aware, a CodeIgniter Controller is simply a class file that is named in a way that can be associated with a URI. <?php class Blog extends CI_Controller { public function index() { echo 'Hello World!'; } } ?> The ExpressionEngine equivalent are template groups and templates , and are managed from within the