Class: Cms::SectionsController

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

Instance Method Summary collapse

Methods included from PageHelper

#cms_toolbar, #container, #container_has_block?, #current_page, #generator_tag, #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, #cms_revert_to_path_for, #cms_versions_path_for, #edit_cms_connectable_path

Methods included from ErrorHandling

#handle_access_denied, #handle_server_error, included

Instance Method Details

#createObject



23
24
25
26
27
28
29
30
31
32
# File 'app/controllers/cms/sections_controller.rb', line 23

def create
  @section = Section.new(params[:section])
  @section.parent = @parent
  if @section.save
    flash[:notice] = "Section '#{@section.name}' was created"
    redirect_to [:cms, @section]
  else
    render :action => 'new'
  end    
end

#destroyObject



46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'app/controllers/cms/sections_controller.rb', line 46

def destroy
  respond_to do |format|
    if @section.deletable? && @section.destroy
      message = "Section '#{@section.name}' was deleted."
      format.html { flash[:notice] = message; redirect_to(cms_sitemap_url) }
      format.json { render :json => {:success => true, :message => message } }
    else
      message = "Section '#{@section.name}' could not be deleted"
      format.html { flash[:error] = message; redirect_to(cms_sitemap_url) }
      format.json { render :json => {:success => false, :message => message } }
    end
  end
end

#editObject



34
35
# File 'app/controllers/cms/sections_controller.rb', line 34

def edit
end

#file_browserObject



68
69
70
71
72
73
74
75
# File 'app/controllers/cms/sections_controller.rb', line 68

def file_browser              
  @section = Section.find_by_name_path(params[:CurrentFolder])
  if request.post? && params[:NewFile]
    handle_file_browser_upload
  else
    render_file_browser
  end
end

#indexObject



10
11
12
# File 'app/controllers/cms/sections_controller.rb', line 10

def index
  redirect_to cms_sitemap_path
end

#moveObject



60
61
62
63
64
65
66
# File 'app/controllers/cms/sections_controller.rb', line 60

def move
  if params[:section_id]
    @move_to = Section.find(params[:section_id])
  else
    @move_to = Section.root.first
  end
end

#newObject



18
19
20
21
# File 'app/controllers/cms/sections_controller.rb', line 18

def new
  @section = @parent.sections.build
  @section.groups = public_groups + cms_groups
end

#showObject



14
15
16
# File 'app/controllers/cms/sections_controller.rb', line 14

def show
  redirect_to cms_sitemap_path
end

#updateObject



37
38
39
40
41
42
43
44
# File 'app/controllers/cms/sections_controller.rb', line 37

def update
  if @section.update_attributes(params[:section])
    flash[:notice] = "Section '#{@section.name}' was updated"
    redirect_to [:cms, @section]
  else
    render :action => 'edit'
  end      
end