Ruby on Rails
ApplicationController (Version #28)

ApplicationController is an abstract Controllers from which all other controllers inherit. All controllers decend from this super layer.

It is an empty controller to which you add filters that should be run on all controllers and methods that should be available to all controllers.

It comes with an Application Helper as well where you can place methods that all templates should have access to.

The ApplicationController can be found in the file
Pre Rails 0.9.0, the ApplicationController was know as AbstractApplicationController (which was introduced in Rails 0.6.0).

category: Glossary

ApplicationController is an abstract Controllers from which all other controllers inherit. All controllers decend from this super layer.

It is an empty controller to which you add filters that should be run on all controllers and methods that should be available to all controllers.

It comes with an Application Helper as well where you can place methods that all templates should have access to.

The ApplicationController can be found in the file
Pre Rails 0.9.0, the ApplicationController was know as AbstractApplicationController (which was introduced in Rails 0.6.0).

category: Glossary