Class: Cms::Menu
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Cms::Menu
- Defined in:
- app/models/cms/menu.rb
Class Method Summary collapse
-
.options_for_select(site) ⇒ Object
– Class Methods ——————————————————–.
Class Method Details
.options_for_select(site) ⇒ Object
– Class Methods ——————————————————–
18 19 20 21 22 23 24 |
# File 'app/models/cms/menu.rb', line 18 def self.(site) out = [] site..each do || out << [ "#{.label}", .id ] end return out.compact end |