82 lines
3.7 KiB
Plaintext
82 lines
3.7 KiB
Plaintext
<%
|
|
# encoding: utf-8
|
|
#
|
|
# 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.
|
|
%>
|
|
|
|
<% unless edit %>
|
|
<li>
|
|
<%= context_menu_link l(:button_edit), edit_dmsf_path(id: dmsf_folder.project, folder_id: dmsf_folder,
|
|
back_url: back_url), class: 'icon icon-edit', disabled: !allowed || locked %>
|
|
</li>
|
|
<% end %>
|
|
<% unless dmsf_link %>
|
|
<li>
|
|
<%= context_menu_link "#{l(:button_copy)}/#{l(:button_move)}", copy_folder_path(id: dmsf_folder, back_url: back_url),
|
|
class: 'icon icon-copy', disabled: !allowed || locked %>
|
|
</li>
|
|
<li>
|
|
<%= context_menu_link l(:label_link_to),
|
|
new_dmsf_link_path(project_id: project.id, dmsf_folder_id: dmsf_folder.id, type: 'link_to',
|
|
back_url: back_url), class: 'icon dmsf-icon-link' %>
|
|
</li>
|
|
<% end %>
|
|
<% unless edit %>
|
|
<li>
|
|
<% if locked %>
|
|
<%= context_menu_link l(:button_unlock), unlock_dmsf_path(id: dmsf_folder.project, folder_id: dmsf_folder,
|
|
back_url: back_url), title: l(:title_locked_by_user, user: dmsf_folder.locked_by),
|
|
class: 'icon icon-unlock', disabled: !allowed || !unlockable %>
|
|
<% else %>
|
|
<%= context_menu_link l(:button_lock), lock_dmsf_path(id: dmsf_folder.project, folder_id: dmsf_folder,
|
|
back_url: back_url), class: 'icon icon-lock', disabled: !allowed %>
|
|
<% end %>
|
|
</li>
|
|
<% end %>
|
|
<li>
|
|
<% if dmsf_folder.notification %>
|
|
<%= context_menu_link l(:label_notifications_off), notify_deactivate_dmsf_path(id: dmsf_folder.project,
|
|
folder_id: dmsf_folder, back_url: back_url), class: 'icon icon-email',
|
|
disabled: !allowed || locked || !dmsf_folder.notification? %>
|
|
<% else %>
|
|
<%= context_menu_link l(:label_notifications_on), notify_activate_dmsf_path(id: dmsf_folder.project,
|
|
folder_id: dmsf_folder, back_url: back_url), class: 'icon icon-email-add',
|
|
disabled: !allowed || locked || dmsf_folder.notification? %>
|
|
<% end %>
|
|
</li>
|
|
<% unless edit %>
|
|
<li>
|
|
<%= context_menu_link l(:button_download), entries_operations_dmsf_path(id: project, folder_id: folder,
|
|
ids: params[:ids], download_entries: true, back_url: back_url), method: :post, class: 'icon icon-download',
|
|
id: 'dmsf-cm-download', disabled: false %>
|
|
</li>
|
|
<li>
|
|
<%= context_menu_link l(:field_mail), entries_operations_dmsf_path(id: dmsf_folder.project, folder_id: folder,
|
|
ids: params[:ids], email_entries: true, back_url: back_url), method: :post, class: 'icon icon-email',
|
|
disabled: !email_allowed %>
|
|
</li>
|
|
<% end %>
|
|
<li>
|
|
<%= context_menu_link l(:button_delete),
|
|
dmsf_link ? dmsf_link_path(id: dmsf_link, folder_id: folder, back_url: back_url) :
|
|
delete_dmsf_path(id: dmsf_folder.project, folder_id: dmsf_folder, parent_id: folder, back_url: back_url),
|
|
data: { confirm: "#{l(:text_are_you_sure)}\n#{l(:text_not_empty) unless dmsf_folder.empty?}" }, method: :delete,
|
|
class: 'icon icon-del', id: 'dmsf-cm-delete', disabled: !allowed || (locked && !dmsf_link) %>
|
|
</li>
|