# Uncomment this if you reference any of your controllers in activate # require_dependency 'application' class FeaturedPagesExtension < Radiant::Extension version "0.1" description "Adds featured_page field to all pages to allow listing of pages marked regardless of their nesting within parent pages." url "http://www.saturnflyer.com/" def activate Page.send :include, FeaturedPages::FeaturedPagesTags admin.page.edit.add :form, "featured_page_meta", 'before' end def deactivate end end