Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

john manoogian III http://jm3.net

« Newer Snippets
Older Snippets »
Showing 11-13 of 13 total

parameterized layouts as "page classes":

// within application controller:

  # layout selector
  def simple_page
    @show_fader = true
    return "application"
  end 

  # layout selector
  def complex_page
    @show_fader = false
    return "application"
  end 



// from within an individual page layout
 layout :simple_page


// finally, from within layout:
 show_fader: <%= @show_fader %>

migrate us: old code snippets



http://jm3.net/wiki.pl?CodeLibrary

get current action or controller from within a view

<%= controller.action_name %> 
or 
<%= controller.controller_name %>
« Newer Snippets
Older Snippets »
Showing 11-13 of 13 total