Class: PagesController

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

Instance Method Summary collapse

Methods inherited from BaseController

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

Methods included from BaseHelper

#add_friend_link, #ajax_spinner_for, #avatar_for, #block_to_partial, #box, #city_cloud, #clippings_link, #commentable_url, #container_title, #excerpt_with_jump, #flash_class, #forum_page?, #is_current_user_and_featured?, #jumbotron, #last_active, #more_comments_links, #page_title, #paginating_links, #possesive, #profile_completeness, #render_jumbotron, #render_widgets, #rounded, #search_posts_title, #search_user_posts_path, #show_footer_content?, #tag_auto_complete_field, #time_ago_in_words, #time_ago_in_words_or_date, #topnav_tab, #truncate_words, #truncate_words_with_highlight, #widget

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)


5
6
7
# File 'app/controllers/pages_controller.rb', line 5

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

#showObject



9
10
11
12
13
14
15
16
17
18
# File 'app/controllers/pages_controller.rb', line 9

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