Renamed helpers to correspond to renamed Controller classes.
[merb_radiant.git] / radiant_extensions_plugins / plugins / acts_as_tree / .svn / text-base / README.svn-base
bloba6cc6a904a9d9f9b253c46a3ba4beadb00f24b5e
1 acts_as_tree
2 ============
4 Specify this +acts_as+ extension if you want to model a tree structure by providing a parent association and a children
5 association. This requires that you have a foreign key column, which by default is called +parent_id+.
7   class Category < ActiveRecord::Base
8     acts_as_tree :order => "name"
9   end
11   Example:
12   root
13    \_ child1
14         \_ subchild1
15         \_ subchild2
17   root      = Category.create("name" => "root")
18   child1    = root.children.create("name" => "child1")
19   subchild1 = child1.children.create("name" => "subchild1")
21   root.parent   # => nil
22   child1.parent # => root
23   root.children # => [child1]
24   root.children.first.children.first # => subchild1
26 Copyright (c) 2007 David Heinemeier Hansson, released under the MIT license