radiant / radiant-search-extension

An extension for Radiant CMS to support searching pages.

This URL has Read+Write access

saturnflyer (author)
Thu Mar 12 12:01:19 -0700 2009
commit  e4bd92f52b35222c1316f5b3c275534b5ad3407d
tree    107abd59beb95ae3e10a9a8b9270b744e2a06a0a
parent  2c16926f86344d2175b0fe1d5bb2814969b2d33b
radiant-search-extension / search_extension.rb
100644 15 lines (11 sloc) 0.314 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class SearchExtension < Radiant::Extension
  version "0.1"
  description %{Provides a page type that allows you to search for pages in
Radiant. Based on Oliver Baltzer's search_behavior.}
  url "http://dev.radiantcms.org/"
 
  def activate
    SearchPage
  end
  
  def deactivate
  end
    
end