我正在尝试创建Redmine插件,在该插件中我想上传文件或图像,并在show动作上显示图像或下载文件。任何人都可以帮助我。
在模型中
class UserInformation < ActiveRecord::Base
unloadable
belongs_to :project
acts_as_attachable :view_permission => :view_files,
:edit_permission => :manage_files,
:delete_permission => :manage_files
在控制器中
class UserInformationsController < ApplicationController
unloadable
require File.dirname(__FILE__) + '/../../../../app/helpers/attachments_helper'
include AttachmentsHelper
helper :attachments
在new.html.erb
<p> <%= render :partial => 'attachments/form' %></p>
在show.html.erb
<%= link_to_attachments @info, :thumbnails => true %>
你能帮我解决吗?
答案 0 :(得分:2)
Redmine已经有了使用附件的类 - 模型Attachment
,控制器AttachmentsController
以及附件视图和帮助程序。
您可以在自己的课程中使用它们。
在acts_as_attachable...
行之后,将unloadable
必需选项添加到模型类中。选项包括:
:view_permission => :view_attachments_permissions
,其中view_attachments_permissions
是标准或插件权限。如果用户想要下载附件,则他必须具有该权限的角色,或者该权限必须是公共的(仅限插件权限 - 源代码中的公共选项集)。在您的观看次数中添加<%= render :partial => 'attachments/form' %>
。
在保存模型实例时,在控制器中调用save_attachments
方法。
或者在保存实例后手动添加附件:
params[:attachments].each do |attachment_param|
attachment = Attachment.where('filename = ?', attachment_param[1][:filename]).first
unless attachment.nil?
attachment.container_type = YourModel.name
attachment.container_id = set.id
attachment.save
end
end
附件在添加后立即保存,但没有容器信息
<小时/> 您还可以通过修补将附件添加到现有的redmine类。
例如,我修补了TimeEntry
类:
require_dependency 'time_entry'
module TimeEntryPatch
def self.included(base) # :nodoc:
base.send(:include, InstanceMethods)
base.class_eval do
unloadable # Send unloadable so it will not be unloaded in development
acts_as_attachable :after_add => :attachment_added, :after_remove => :attachment_removed
end
end
...
您可以直接在Redmine代码中查看示例。
附件由issue
,Project
和其他一些模型使用。
我在那里找到了我的问题的答案!
对于查看附加图像您可以使用Lightbox 2之类的插件。 将插件添加到您的Redmine或将其代码和样式表复制到您的插件。
答案 1 :(得分:0)
我已在此插件中完成此操作:https://github.com/iridakos/release_logs。检查相关代码。