55 lines
990 B
Ruby
55 lines
990 B
Ruby
class Admin::PagesController < ApplicationController
|
|
|
|
layout "admin"
|
|
|
|
def index
|
|
@pages = Page.all( :conditions => { :parent_page_id => "root" } )
|
|
end
|
|
|
|
def show
|
|
@page = Page.find(params[:id])
|
|
|
|
redirect_to "/#{@page.name}"
|
|
end
|
|
|
|
def new
|
|
@page = Page.new
|
|
@page.is_published = true
|
|
@page.parent_page_id = params[:parent_page_id]
|
|
end
|
|
|
|
def edit
|
|
@page = Page.find(params[:id])
|
|
end
|
|
|
|
def create
|
|
@page = Page.new(params[:page])
|
|
|
|
if @page.save
|
|
flash[:notice] = 'Page was successfully created.'
|
|
redirect_to admin_pages_url
|
|
else
|
|
render :action => "new"
|
|
end
|
|
end
|
|
|
|
def update
|
|
@page = Page.find(params[:id])
|
|
|
|
if @page.update_attributes(params[:page])
|
|
flash[:notice] = 'Page was successfully updated.'
|
|
redirect_to admin_pages_url
|
|
else
|
|
render :action => "edit"
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@page = Page.find(params[:id])
|
|
@page.destroy
|
|
|
|
redirect_to admin_pages_url
|
|
end
|
|
|
|
end
|