aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/refinery/banners/banners_controller.rb
diff options
context:
space:
mode:
authorJames Thompson <james.b.thompson@gmail.com>2012-03-14 11:40:16 +0200
committerJames Thompson <james.b.thompson@gmail.com>2012-03-14 11:40:16 +0200
commit56d7747f54e86993415b76c92e101608e5ea44e2 (patch)
tree025b7b37f50c4c291e7e676286e7767c40adb1f9 /app/controllers/refinery/banners/banners_controller.rb
downloadrefinerycms-pc_banners-56d7747f54e86993415b76c92e101608e5ea44e2.tar.gz
refinerycms-pc_banners-56d7747f54e86993415b76c92e101608e5ea44e2.tar.bz2
refinerycms-pc_banners-56d7747f54e86993415b76c92e101608e5ea44e2.zip
initial commit
Diffstat (limited to 'app/controllers/refinery/banners/banners_controller.rb')
-rw-r--r--app/controllers/refinery/banners/banners_controller.rb34
1 files changed, 34 insertions, 0 deletions
diff --git a/app/controllers/refinery/banners/banners_controller.rb b/app/controllers/refinery/banners/banners_controller.rb
new file mode 100644
index 0000000..5ada5e0
--- /dev/null
+++ b/app/controllers/refinery/banners/banners_controller.rb
@@ -0,0 +1,34 @@
+module Refinery
+ module Banners
+ class BannersController < ::ApplicationController
+
+ before_filter :find_all_banners
+ before_filter :find_page
+
+ def index
+ # you can use meta fields from your model instead (e.g. browser_title)
+ # by swapping @page for @banner in the line below:
+ present(@page)
+ end
+
+ def show
+ @banner = Banner.find(params[:id])
+
+ # you can use meta fields from your model instead (e.g. browser_title)
+ # by swapping @page for @banner in the line below:
+ present(@page)
+ end
+
+ protected
+
+ def find_all_banners
+ @banners = Banner.order('position ASC')
+ end
+
+ def find_page
+ @page = ::Refinery::Page.where(:link_url => "/banners").first
+ end
+
+ end
+ end
+end