put setup APP var setup into Orbit class

This commit is contained in:
Matthew Fu 2012-01-18 11:51:38 +08:00 committed by Christophe Vilayphiou
parent 4ed8a2164c
commit 959f3e8b2f
3 changed files with 6 additions and 16 deletions

View File

@ -1,4 +1,10 @@
class ObitFrontendComponentController< ApplicationController
before_filter :setup_vars
before_filter {|c| c.front_end_available(@app_title)}
layout 'production'
def setup_vars
@app_title = request.fullpath.split('/')[2]
end
end

View File

@ -1,14 +1,6 @@
class Panel::NewBlog::FrontEnd::PostsController < ObitFrontendController
def initialize
super
@app_title = NewBlog::MOUDLEAPP_TITLE
end
# GET /posts
# GET /posts.xml
def index
@posts = Post.all
end

View File

@ -1,12 +1,4 @@
class Panel::NewBlog::Widget::PostsController < ObitWidgetController
layout 'production'
def initialize
super
@app_title = NewBlog::MOUDLEAPP_TITLE
end
# GET /posts
# GET /posts.xml
def index