Controller init

This commit is contained in:
Bernie Chiu 2013-08-22 15:06:09 +08:00 committed by chris
parent 2fdfdeafa2
commit cab4614a8f
3 changed files with 27 additions and 6 deletions

View File

@ -0,0 +1,21 @@
class Panel::Archive::BackEnd::ArchiveFilesController < OrbitBackendController
# before_filter :for_app_manager,:except => [:index,:show]
include OrbitControllerLib::DivisionForDisable
before_filter :force_order_for_visitor,:only=>[:index]
before_filter :force_order_for_user,:except => [:index]
before_filter :for_app_sub_manager,:except => [:index]
before_filter :only => [ :new,:edit,:update,:create] do |controller|
controller.get_categorys('ArchiveFileCategory')
end
def new
@vocab = DictionaryVocab.new
respond_to do |format|
format.html # new.html.erb
format.xml { render xml: @vocab}
end
end
end

View File

@ -1,8 +1,8 @@
Rails.application.routes.draw do
namespace :panel do
namespace :archive do
namespace :dicitonary do
namespace :back_end do
resources :archive_files do
resources :dicitonary_vocabs do
collection do
get 'delete'
end

View File

@ -61,10 +61,10 @@ module Dictionary
:available_for => [:all]
context_link 'add',
:link_path=>"new_panel_archive_back_end_archive_file_path" ,
:priority=>2,
:active_for_action=>{:archive_files=>:new},
:available_for => [:sub_manager]
:link_path => "new_panel_dicationary_back_end_dictionary_vocab_path",
:priority => 2,
:active_for_action => { :dictionary_vocabs => :new },
:available_for => [:sub_manager]
context_link 'categories',
:link_path=>"panel_archive_back_end_archive_file_categorys_path" ,