Class: Pageflow::EntriesController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- Pageflow::EntriesController
- Defined in:
- app/controllers/pageflow/entries_controller.rb
Instance Method Summary collapse
Instance Method Details
#edit ⇒ Object
59 60 61 62 |
# File 'app/controllers/pageflow/entries_controller.rb', line 59 def edit @entry = DraftEntry.find(params[:id]) (:edit, @entry.to_model) end |
#index ⇒ Object
13 14 15 16 17 |
# File 'app/controllers/pageflow/entries_controller.rb', line 13 def index theming = Theming.for_request(request).with_home_url.first! redirect_to(theming.home_url) end |
#page ⇒ Object
42 43 44 45 46 47 |
# File 'app/controllers/pageflow/entries_controller.rb', line 42 def page entry = PublishedEntry.find(params[:id], entry_request_scope) index = params[:page_index].split('-').first.to_i redirect_to(short_entry_path(entry.to_model, :anchor => entry.pages[index].try(:perma_id))) end |
#partials ⇒ Object
49 50 51 52 53 54 55 56 57 |
# File 'app/controllers/pageflow/entries_controller.rb', line 49 def partials authenticate_user! @entry = DraftEntry.find(params[:id]) (:show, @entry.to_model) respond_to do |format| format.html { render :action => 'partials', :layout => false } end end |
#show ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'app/controllers/pageflow/entries_controller.rb', line 19 def show respond_to do |format| format.any(:html, :css) do @entry = PublishedEntry.find(params[:id], entry_request_scope) if params[:page].present? @entry.share_target = Page.find_by_perma_id(params[:page]) else @entry.share_target = @entry end end format.json do authenticate_user! @entry = DraftEntry.find(params[:id]) (:show, @entry.to_model) end format.any do render(:file => 'public/pageflow/404.html', :status => :not_found) end end end |
#update ⇒ Object
64 65 66 67 68 69 70 71 |
# File 'app/controllers/pageflow/entries_controller.rb', line 64 def update @entry = DraftEntry.find(params[:id]) (:update, @entry.to_model) @entry.(entry_params) head(:no_content) end |