Easy project's tabs hook

This commit is contained in:
karel.picman@lbcfree.net 2021-05-18 15:52:59 +02:00
parent c23f84d476
commit 669bc6ffe9
2 changed files with 42 additions and 0 deletions

View File

@ -74,6 +74,7 @@ require 'redmine_dmsf/hooks/views/custom_field_view_hooks'
require 'redmine_dmsf/hooks/views/search_view_hooks'
require 'redmine_dmsf/hooks/helpers/issues_helper_hooks'
require 'redmine_dmsf/hooks/helpers/search_helper_hooks'
require 'redmine_dmsf/hooks/helpers/project_helper_hooks'
# Macros
require 'redmine_dmsf/macros'

View File

@ -0,0 +1,41 @@
# encoding: utf-8
# frozen_string_literal: true
#
# Redmine plugin for Document Management System "Features"
#
# Copyright © 2011-21 Karel Pičman <karel.picman@kontron.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
module RedmineDmsf
module Hooks
include Redmine::Hook
class HelperProjectsHook < RedmineDmsf::Hooks::Listener
def helper_project_settings_tabs(context)
dmsf_tabs = [
{ name: 'dmsf', action: { controller: 'dmsf_state', action: 'user_pref_save' },
partial: 'dmsf_state/user_pref', label: :menu_dmsf },
{ name: 'dmsf_workflow', action: { controller: 'dmsf_workflows', action: 'index' },
partial: 'dmsf_workflows/main', label: :label_dmsf_workflow_plural }
]
context[:tabs].concat(dmsf_tabs.select { |dmsf_tab| User.current.allowed_to?(dmsf_tab[:action], context[:project]) })
end
end
end
end