From 56d7747f54e86993415b76c92e101608e5ea44e2 Mon Sep 17 00:00:00 2001 From: James Thompson Date: Wed, 14 Mar 2012 11:40:16 +0200 Subject: initial commit --- .../refinery/banners/banners_controller.rb | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 app/controllers/refinery/banners/banners_controller.rb (limited to 'app/controllers/refinery/banners/banners_controller.rb') 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 -- cgit v1.2.3