defined in rails/actionpack/lib/abstract_controller/helpers.rb
Declare a controller method as a helper. For example, the following
then in view
<% if logged_in? -%>Welcome, <%= current_user.name %><% end -%>
The helper
class method can take a series of helper module names, a block, or both.
###Parameters