Class: PagesController

Inherits:
BaseController show all
Defined in:
app/controllers/pages_controller.rb

Instance Method Summary collapse

Methods inherited from BaseController

#advertise, #css_help, #footer_content, #homepage_features, #plaxo, #rss_site_index, #site_index

Methods included from LocalizedApplication

#get_matching_ui_locale, #get_sorted_langs_from_accept_header, #get_valid_lang_from_accept_header, #set_locale

Methods included from AuthenticatedSystem

#login_by_token, #update_last_seen_at

Instance Method Details

#cache_action?Boolean

Returns:

  • (Boolean)


9
10
11
# File 'app/controllers/pages_controller.rb', line 9

def cache_action?
  !logged_in? && controller_name.eql?('pages')
end

#createObject



36
37
38
39
40
41
42
43
44
# File 'app/controllers/pages_controller.rb', line 36

def create
  @page = Page.new(params[:page])
  if @page.save
    flash[:notice] = :page_was_successfully_created.l
    redirect_to admin_pages_path
  else
    render :action => :new
  end
end

#destroyObject



55
56
57
58
59
# File 'app/controllers/pages_controller.rb', line 55

def destroy
  @page.destroy
  flash[:notice] = :page_was_successfully_deleted.l
  redirect_to admin_pages_path
end

#indexObject



16
17
18
# File 'app/controllers/pages_controller.rb', line 16

def index
  @pages = Page.unscoped.order('created_at DESC').page(params[:page])
end

#previewObject



20
21
22
23
# File 'app/controllers/pages_controller.rb', line 20

def preview
  @page = Page.find(params[:id])
  render :action => :show
end

#showObject



25
26
27
28
29
30
31
32
33
34
# File 'app/controllers/pages_controller.rb', line 25

def show
  @page = Page.live.find(params[:id])
  unless logged_in? || @page.page_public
    flash[:error] = :page_not_public_warning.l
    redirect_to :controller => 'sessions', :action => 'new'
  end
rescue
  flash[:error] = :page_not_found.l
  redirect_to home_path
end

#updateObject



46
47
48
49
50
51
52
53
# File 'app/controllers/pages_controller.rb', line 46

def update
  if @page.update_attributes(params[:page])
    flash[:notice] = :page_was_successfully_updated.l
    redirect_to admin_pages_path
  else
    render :action => :edit
  end
end