Class: Cms::PageRoutesController
Instance Method Summary
collapse
Methods included from PageHelper
#able_to?, #cms_toolbar, #container, #container_has_block?, #current_page, #page_title, #render_breadcrumbs, #render_portlet
Methods included from PathHelper
#cms_connectable_path, #cms_index_path_for, #cms_index_url_for, #cms_new_path_for, #cms_new_url_for, #edit_cms_connectable_path
#handle_access_denied, #handle_server_error, included
Instance Method Details
#create ⇒ Object
14
15
16
17
18
19
20
21
22
|
# File 'app/controllers/cms/page_routes_controller.rb', line 14
def create
@page_route = PageRoute.new(params[:page_route])
if @page_route.save
flash[:notice] = "Page Route Created"
redirect_to cms_page_route_url(@page_route)
else
render :action => "new"
end
end
|
#destroy ⇒ Object
34
35
36
37
38
|
# File 'app/controllers/cms/page_routes_controller.rb', line 34
def destroy
@page_route.destroy
flash[:notice] = "Page Route Deleted"
redirect_to cms_page_routes_url
end
|
#index ⇒ Object
6
7
8
|
# File 'app/controllers/cms/page_routes_controller.rb', line 6
def index
@page_routes = PageRoute.paginate(:order => "name", :page => params[:page])
end
|
#new ⇒ Object
10
11
12
|
# File 'app/controllers/cms/page_routes_controller.rb', line 10
def new
@page_route = PageRoute.new
end
|
#update ⇒ Object
24
25
26
27
28
29
30
31
32
|
# File 'app/controllers/cms/page_routes_controller.rb', line 24
def update
if @page_route.update_attributes(params[:page_route])
flash[:notice] = "Page Route Updated"
redirect_to cms_page_route_url(@page_route)
else
render :action => "new"
end
end
|