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

all_children! (See related posts)

This snippet just gives you all the children of a model that acts_as_tree

  def all_children
    Page.all_children_for self
  end
  
  def self.all_children_for(parent, arr = [])
    parent.children.each { |child| arr.push child }
    parent.children.each { |child| all_children_for child, arr }
    arr
  end

You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts