Module: Haml::Helpers::ActionViewExtensions
- Included in:
- Haml::Helpers
- Defined in:
- lib/haml/helpers/action_view_extensions.rb
Overview
This module contains various useful helper methods that either tie into ActionView or the rest of the ActionPack stack, or are only useful in that context. Thus, the methods defined here are only available if ActionView is installed.
Instance Method Summary collapse
-
#page_class ⇒ String
(also: #generate_content_class_names)
Returns a value for the "class" attribute unique to this controller/action pair.
Instance Method Details
#page_class ⇒ String Also known as: generate_content_class_names
Returns a value for the "class" attribute
unique to this controller/action pair.
This can be used to target styles specifically at this action or controller.
For example, if the current action were EntryController#show
,
%div{:class => page_class} My Div
would become
<div class="entry show">My Div</div>
Then, in a stylesheet (shown here as Sass), you could refer to this specific action:
.entry.show
font-weight: bold
or to all actions in the entry controller:
.entry
color: #00f
34 35 36 |
# File 'lib/haml/helpers/action_view_extensions.rb', line 34
def page_class
controller.controller_name + " " + controller.action_name
end
|