Module: Redmine::MenuManager::MenuController
- Included in:
- ApplicationController
- Defined in:
- lib/redmine/menu_manager.rb
Defined Under Namespace
Modules: ClassMethods
Class Method Summary
Instance Method Summary
-
- (Object) current_menu_item
Returns the menu item name according to the current action.
- - (Object) menu_items
-
- (Object) redirect_to_project_menu_item(project, name)
Redirects user to the menu item of the given project Returns false if user is not authorized.
Class Method Details
+ (Object) included(base)
110 111 112 |
# File 'lib/redmine/menu_manager.rb', line 110 def self.included(base) base.extend(ClassMethods) end |
Instance Method Details
Returns the menu item name according to the current action
141 142 143 144 |
# File 'lib/redmine/menu_manager.rb', line 141 def ||= [controller_name.to_sym][:actions][action_name.to_sym] || [controller_name.to_sym][:default] end |
136 137 138 |
# File 'lib/redmine/menu_manager.rb', line 136 def self.class. end |
Redirects user to the menu item of the given project Returns false if user is not authorized
148 149 150 151 152 153 154 155 |
# File 'lib/redmine/menu_manager.rb', line 148 def (project, name) item = Redmine::MenuManager.items(:project_menu).detect {|i| i.name.to_s == name.to_s} if item && User.current.allowed_to?(item.url, project) && (item.condition.nil? || item.condition.call(project)) redirect_to({item.param => project}.merge(item.url)) return true end false end |