Class: DcMenu

Inherits:
Object
  • Object
show all
Includes:
Mongoid::Document, Mongoid::Timestamps
Defined in:
app/models/dc_menu.rb

Overview

Mongoid::Document model for dc_menus collection.

Default menu system for DRG CMS. Model recursively embeds DcMenuItem documents which (theoretically) results in infinite level of sub menus. In practice reasonable maximum level of 4 is advised.

Class Method Summary collapse

Class Method Details

.choices4_menu(site) ⇒ Object

Will return all top level menu items of specified menu. Used in DcPage document for selecting top level selected menu, when document displayed in browser.

Called from DcApplicationHelper :dc_choices4_menu: method.

Parameters:

Site

DcSite document. Site for which menu belongs to. If site is not specified

all current menus in dc_menus collection will be returned.

Returns: Array. Of choices prepared for select input field.



65
66
67
68
69
70
71
72
73
74
75
# File 'app/models/dc_menu.rb', line 65

def self.choices4_menu(site)
  rez = []
  menus = (site.menu_name.blank? ? all : where(name: site.menu_name)).to_a
  menus.each do |menu|
    rez << [menu.name, nil]
    menu.dc_menu_items.where(active: true).order_by(order: 1).each do |menu_item|
      rez << ['-- ' + menu_item.caption, menu_item._id]
    end
  end
  rez
end