This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
paperclipped_extension.rb
52 lines (40 loc) · 1.86 KB
/
paperclipped_extension.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# require_dependency 'application_controller'
require File.dirname(__FILE__) + '/lib/url_additions'
include UrlAdditions
class PaperclippedExtension < Radiant::Extension
version "0.8.0"
description "Assets extension based on the lightweight Paperclip plugin."
url "http://github.com/kbingman/paperclipped"
def activate
Radiant::AdminUI.send :include, AssetsAdminUI unless defined? admin.asset # UI is a singleton and already loaded
admin.asset = Radiant::AdminUI.load_default_asset_regions
%w{page}.each do |view|
# admin.send(view).edit.add :main, "/admin/assets/show_bucket_link", :before => "edit_header"
admin.pages.edit.add :part_controls, 'admin/assets/show_bucket_link'
admin.send(view).edit.add :main, "/admin/assets/assets_bucket", :after => "edit_buttons"
admin.send(view).edit.asset_tabs.concat %w{attachment_tab upload_tab bucket_tab search_tab}
admin.send(view).edit.bucket_pane.concat %w{bucket_notes bucket bucket_bottom}
admin.send(view).edit.asset_panes.concat %w{page_attachments upload search}
end
Page.class_eval {
has_many :page_attachments, :order => :position
has_many :assets, :through => :page_attachments
include AssetPageTags
}
# Make asset tags available in stylesheets and javascripts
if defined?(TextAsset)
TextAsset.send :include, AssetTags
end
# connect UserActionObserver with my models
UserActionObserver.instance.send :add_observer!, Asset
# This is just needed for testing if you are using mod_rails
if Radiant::Config.table_exists? && Radiant::Config["assets.image_magick_path"]
Paperclip.options[:image_magick_path] = Radiant::Config["assets.image_magick_path"]
end
tab 'Content' do
add_item "Assets", "/admin/assets", :after => "Pages"
end
end
def deactivate
end
end