-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtaggable_extension.rb
30 lines (27 loc) · 1.81 KB
/
taggable_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
require_dependency 'application_controller'
require "radiant-taggable-extension"
class TaggableExtension < Radiant::Extension
version RadiantTaggableExtension::VERSION
description RadiantTaggableExtension::DESCRIPTION
url RadiantTaggableExtension::URL
def activate
require 'natcmp' # a natural sort algorithm. possibly not that efficient.
ActiveRecord::Base.send :include, Taggable::Model # provide has_tags for everything but don't call it for anything
Page.send :include, Taggable::Page # pages are taggable (and the keywords column is overridden)
Asset.send :include, Taggable::Asset # assets are taggable (and a fake keywords column is provided)
Page.send :include, Radius::TaggableTags # adds the basic radius tags for showing page tags and tag pages
Page.send :include, Radius::AssetTags # adds some asset:* tags
Page.send :include, Radius::LibraryTags
SiteController.send :include, Taggable::SiteController # some path and parameter handling in support of library pages
Admin::PagesController.send :include, Taggable::AdminPagesController # tweaks the admin interface to make page tags more prominent
UserActionObserver.instance.send :add_observer!, Tag # tags get creator-stamped
Radiant::AdminUI.send :include, Taggable::AdminUI unless defined? admin.tag
admin.tag ||= Radiant::AdminUI.load_taggable_regions
admin.asset.edit.add :extended_metadata, 'furniture'
admin.asset.edit.add :extended_metadata, 'tags'
admin.page.edit.add :extended_metadata, 'tags'
tab("Content") do
add_item("Tags", "/admin/tags")
end
end
end