| Class | ProductCategory |
| In: |
app/models/product_category.rb
|
| Parent: | Category |
# File app/models/product_category.rb, line 10
10: def self.menu_categories(top_category, env)
11: top_category ? top_category.children : top_level_for(env).select{|c|c.kind_of?(ProductCategory)}
12: end