comparison lib/plugins/acts_as_tree/README @ 1115:433d4f72a19b redmine-2.2

Update to Redmine SVN revision 11137 on 2.2-stable branch
author Chris Cannam
date Mon, 07 Jan 2013 12:01:42 +0000
parents vendor/plugins/acts_as_tree/README@513646585e45
children
comparison
equal deleted inserted replaced
929:5f33065ddc4b 1115:433d4f72a19b
1 acts_as_tree
2 ============
3
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+.
6
7 class Category < ActiveRecord::Base
8 acts_as_tree :order => "name"
9 end
10
11 Example:
12 root
13 \_ child1
14 \_ subchild1
15 \_ subchild2
16
17 root = Category.create("name" => "root")
18 child1 = root.children.create("name" => "child1")
19 subchild1 = child1.children.create("name" => "subchild1")
20
21 root.parent # => nil
22 child1.parent # => root
23 root.children # => [child1]
24 root.children.first.children.first # => subchild1
25
26 Copyright (c) 2007 David Heinemeier Hansson, released under the MIT license