37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
module PersonalLab
 | 
						|
  OrbitApp.registration "PersonalLab",:type=> 'ModuleApp' do
 | 
						|
    module_label 'module_name.personal_lab'
 | 
						|
    base_url File.expand_path File.dirname(__FILE__)   
 | 
						|
    personal_plugin :enable => true, :sort_number => '30', :app_name=>"Lab", :intro_app_name=>"PersonalLabIntro",:path=>"panel/personal_lab/plugin/profile",:front_path=>"panel/personal_lab/front_end/profile",:admin_path=>"/panel/personal_lab/back_end/labs",:i18n=>'module_name.personal_lab'
 | 
						|
	    
 | 
						|
 | 
						|
 | 
						|
	version "0.1"
 | 
						|
	organization "Rulingcom"
 | 
						|
	author "RD dep"
 | 
						|
	intro "I am intro"
 | 
						|
	update_info 'some update_info'
 | 
						|
 | 
						|
	front_end do
 | 
						|
	  app_page 'labs' do 
 | 
						|
	    frontend_i18n "personal_lab.frontend.labs"
 | 
						|
	  end
 | 
						|
	end   
 | 
						|
 | 
						|
  end
 | 
						|
end
 | 
						|
 | 
						|
 | 
						|
# OrbitApp.backend_side_bar 'News' do
 | 
						|
  
 | 
						|
#   block :available_for =>  [:admin,:guest,:manager,:sub_manager],
 | 
						|
#             :active_for_controllers=> ['news_bulletins', '/panel/news/back_end/tags', 'news_bulletin_categorys', 'news_approvals'],
 | 
						|
#             :active_for_ob_auths_object => ['NewsBulletinCategory'],
 | 
						|
#             :head_link => panel_news_back_end_news_bulletins_path  ,
 | 
						|
#             :head_label=> I18n.t(:news)
 | 
						|
 | 
						|
#   context_link :link=>new_panel_news_back_end_news_bulletin_path ,
 | 
						|
#                       :priority=>1,:label=>I18n.t('announcement.add_new'),
 | 
						|
#                       :active_for_action=>{:news_bulletins=>:new}
 | 
						|
 | 
						|
# end |