Class: Alchemy::Admin::LayoutpagesController

Inherits:
BaseController show all
Includes:
CurrentLanguage
Defined in:
app/controllers/alchemy/admin/layoutpages_controller.rb

Instance Method Summary collapse

Methods inherited from BaseController

#leave

Methods included from Modules

included, #module_definition_for, register_module

Methods included from Alchemy::AbilityHelper

#current_ability

Methods included from ConfigurationMethods

#configuration, #multi_language?, #multi_site?, #prefix_locale?

Instance Method Details

#editObject



17
18
19
# File 'app/controllers/alchemy/admin/layoutpages_controller.rb', line 17

def edit
  @page = Page.find(params[:id])
end

#indexObject



12
13
14
15
# File 'app/controllers/alchemy/admin/layoutpages_controller.rb', line 12

def index
  @layout_pages = Page.layoutpages.where(language: @current_language)
  @languages = Language.on_current_site
end

#updateObject



21
22
23
24
25
26
27
28
29
# File 'app/controllers/alchemy/admin/layoutpages_controller.rb', line 21

def update
  @page = Page.find(params[:id])
  if @page.update(page_params)
    @notice = Alchemy.t("Page saved", name: @page.name)
    render "alchemy/admin/pages/update"
  else
    render :edit, status: :unprocessable_entity
  end
end